CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Private Attributes
MagESector Class Reference

#include <MagESector.h>

Public Member Functions

const MagVolumefindVolume (const GlobalPoint &gp, double tolerance) const
 Find the volume containing a point, with a given tolerance. More...
 
 MagESector (std::vector< MagELayer * > &layers, Geom::Phi< float > phiMin)
 Constructor. More...
 
Geom::Phi< float > minPhi () const
 Phi of sector start. More...
 
virtual ~MagESector ()
 Destructor. More...
 

Private Attributes

std::vector< MagELayer * > theLayers
 
Geom::Phi< float > thePhiMin
 

Detailed Description

A sector of volumes in the endcap. One sector is composed of several layers (MagELayer)

Author
N. Amapane - INFN Torino

Definition at line 18 of file MagESector.h.

Constructor & Destructor Documentation

MagESector::MagESector ( std::vector< MagELayer * > &  layers,
Geom::Phi< float >  phiMin 
)

Constructor.

Definition at line 18 of file MagESector.cc.

18 : theLayers(layers), thePhiMin(phiMin) {}
std::vector< LayerSetAndLayers > layers(const SeedingLayerSetsHits &sets)
Definition: LayerTriplets.cc:4
Geom::Phi< float > thePhiMin
Definition: MagESector.h:34
std::vector< MagELayer * > theLayers
Definition: MagESector.h:33
MagESector::~MagESector ( )
virtual

Destructor.

Definition at line 20 of file MagESector.cc.

References theLayers.

20  {
21  for (vector<MagELayer*>::const_iterator ilay = theLayers.begin(); ilay != theLayers.end(); ++ilay) {
22  delete (*ilay);
23  }
24 }
std::vector< MagELayer * > theLayers
Definition: MagESector.h:33

Member Function Documentation

const MagVolume * MagESector::findVolume ( const GlobalPoint gp,
double  tolerance 
) const

Find the volume containing a point, with a given tolerance.

Definition at line 26 of file MagESector.cc.

References LogTrace, mps_fire::result, theLayers, BeamSpotPI::Z, and PV3DBase< T, PVType, FrameType >::z().

26  {
27  const MagVolume* result = nullptr;
28  float Z = gp.z();
29 
30  // FIXME : use a binfinder
31  for (vector<MagELayer*>::const_reverse_iterator ilay = theLayers.rbegin(); ilay != theLayers.rend(); ++ilay) {
32  if (Z + tolerance > (*ilay)->minZ()) {
33  if (Z - tolerance < (*ilay)->maxZ()) {
34  LogTrace("MagGeometry") << " Trying elayer at Z " << (*ilay)->minZ() << " " << Z << endl;
35  result = (*ilay)->findVolume(gp, tolerance);
36  LogTrace("MagGeometry") << "***In elayer " << (result == nullptr ? " failed " : " OK ") << endl;
37  } else {
38  // break; // FIXME: OK if sorted by maxZ
39  }
40  }
41  if (result != nullptr)
42  return result;
43  }
44 
45  return nullptr;
46 }
const double tolerance
#define LogTrace(id)
tuple result
Definition: mps_fire.py:311
T z() const
Definition: PV3DBase.h:61
std::vector< MagELayer * > theLayers
Definition: MagESector.h:33
Geom::Phi<float> MagESector::minPhi ( ) const
inline

Phi of sector start.

Definition at line 30 of file MagESector.h.

References thePhiMin.

30 { return thePhiMin; }
Geom::Phi< float > thePhiMin
Definition: MagESector.h:34

Member Data Documentation

std::vector<MagELayer*> MagESector::theLayers
private

Definition at line 33 of file MagESector.h.

Referenced by findVolume(), and ~MagESector().

Geom::Phi<float> MagESector::thePhiMin
private

Definition at line 34 of file MagESector.h.

Referenced by minPhi().