#include "BField/BfldCache.h"#include "BField/BfldLoanPool.h"#include "Plex/PlexPlaneId.h"#include "Conventions/Munits.h"#include "MessageService/MsgService.h"#include <cassert>#include <float.h>#include <iomanip>Go to the source code of this file.
Functions | |
| CVSID ("$Id: BfldCache.cxx,v 1.30 2008/03/19 04:29:31 rhatcher Exp $") | |
| bool | BFieldWithinZ (Double_t z, Double_t zmin, Double_t zmax) |
| bool | BFieldOutsideZ (Double_t z, Double_t zmin, Double_t zmax) |
|
||||||||||||||||
|
Definition at line 34 of file BfldCache.cxx. Referenced by BfldCache::SetSteelAndPlaneMapCache(). 00035 {
00036 return ( z < zmin || z > zmax );
00037 }
|
|
||||||||||||||||
|
Definition at line 30 of file BfldCache.cxx. Referenced by BfldCache::SetSteelAndPlaneMapCache(). 00031 {
00032 return ( z >= zmin && z <= zmax );
00033 }
|
|
||||||||||||
|
|
1.3.9.1