CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Private Attributes
trackerDTC::SensorModule Class Reference

#include <SensorModule.h>

Public Types

enum  Type {
  BarrelPS, Barrel2S, DiskPS, Disk2S,
  NumTypes
}
 

Public Member Functions

bool barrel () const
 
double cos () const
 
int dtcId () const
 
int encodedLayerId () const
 
int encodedR () const
 
bool flipped () const
 
int layerId () const
 
int modId () const
 
int numColumns () const
 
int numRows () const
 
double offsetR () const
 
double offsetZ () const
 
double phi () const
 
double pitchCol () const
 
double pitchRow () const
 
bool psModule () const
 
double r () const
 
 SensorModule (const Setup &setup, const DetId &detId, int dtcId, int modId)
 
double sep () const
 
bool side () const
 
bool signBend () const
 
bool signCol () const
 
bool signRow () const
 
double sin () const
 
double tilt () const
 
Type type () const
 
int windowSize () const
 
double z () const
 
 ~SensorModule ()
 

Private Attributes

bool barrel_
 
double cos_
 
DetId detId_
 
int dtcId_
 
int encodedLayerId_
 
int encodedR_
 
bool flipped_
 
int layerId_
 
int modId_
 
int numColumns_
 
int numRows_
 
double offsetR_
 
double offsetZ_
 
double phi_
 
double pitchCol_
 
double pitchRow_
 
bool psModule_
 
double r_
 
double sep_
 
bool side_
 
bool signBend_
 
bool signCol_
 
bool signRow_
 
double sin_
 
double tilt_
 
Type type_
 
int windowSize_
 
double z_
 

Detailed Description

Definition at line 11 of file SensorModule.h.

Member Enumeration Documentation

◆ Type

Enumerator
BarrelPS 
Barrel2S 
DiskPS 
Disk2S 
NumTypes 

Definition at line 16 of file SensorModule.h.

Constructor & Destructor Documentation

◆ SensorModule()

trackerDTC::SensorModule::SensorModule ( const Setup setup,
const DetId detId,
int  dtcId,
int  modId 
)

Definition at line 15 of file SensorModule.cc.

16  : detId_(detId), dtcId_(dtcId), modId_(modId) {
17  const TrackerGeometry* trackerGeometry = setup.trackerGeometry();
18  const TrackerTopology* trackerTopology = setup.trackerTopology();
19  const GeomDetUnit* geomDetUnit = trackerGeometry->idToDetUnit(detId);
20  const PixelTopology* pixelTopology =
21  dynamic_cast<const PixelTopology*>(&(dynamic_cast<const PixelGeomDetUnit*>(geomDetUnit)->specificTopology()));
22  const Plane& plane = dynamic_cast<const PixelGeomDetUnit*>(geomDetUnit)->surface();
23  const GlobalPoint pos0 = GlobalPoint(geomDetUnit->position());
24  const GlobalPoint pos1 =
25  GlobalPoint(trackerGeometry->idToDetUnit(trackerTopology->partnerDetId(detId))->position());
26  // detector region [0-8]
27  const int region = dtcId_ / setup.numDTCsPerRegion();
28  // module radius in cm
29  r_ = pos0.perp();
30  // module phi w.r.t. detector region_ centre in rad
31  phi_ = deltaPhi(pos0.phi() - (region + .5) * setup.baseRegion());
32  // module z in cm
33  z_ = pos0.z();
34  // sensor separation in cm
35  sep_ = (pos1 - pos0).mag();
36  // sensor pitch in cm [strip=.009,pixel=.01]
37  pitchRow_ = pixelTopology->pitch().first;
38  // sensor length in cm [strip=5,pixel=.15625]
39  pitchCol_ = pixelTopology->pitch().second;
40  // number of columns [2S=2,PS=8]
41  numColumns_ = pixelTopology->ncolumns();
42  // number of rows [2S=8*127,PS=8*120]
43  numRows_ = pixelTopology->nrows();
44  // +z or -z
45  side_ = pos0.z() >= 0.;
46  // main sensor inside or outside
47  flipped_ = pos0.mag() > pos1.mag();
48  // barrel or endcap
50  // Pixel-Strip or 2Strip module
52  // module tilt measured w.r.t. beam axis (0=barrel), tk layout measures w.r.t. radial axis
53  tilt_ = flipped_ ? atan2(pos1.z() - pos0.z(), pos0.perp() - pos1.perp())
54  : atan2(pos0.z() - pos1.z(), pos1.perp() - pos0.perp());
55  // sinus of module tilt measured w.r.t. beam axis (0=barrel), tk layout measures w.r.t. radial axis
56  sin_ = std::sin(tilt_);
57  // cosinus of module tilt measured w.r.t. beam axis (+-1=endcap), tk layout measures w.r.t. radial axis
58  cos_ = std::cos(tilt_);
59  // layer id [barrel: 0-5, endcap: 0-4]
60  const int layer =
61  (barrel_ ? trackerTopology->layer(detId) : trackerTopology->tidWheel(detId)) - setup.offsetLayerId();
62  // layer id [1-6,11-15]
63  layerId_ = layer + setup.offsetLayerId() + (barrel_ ? 0 : setup.offsetLayerDisks());
64  // TTStub row needs flip of sign
65  signRow_ = signbit(deltaPhi(plane.rotation().x().phi() - pos0.phi()));
66  // TTStub col needs flip of sign
67  signCol_ = !barrel_ && !side_;
68  // TTStub bend needs flip of sign
69  signBend_ = barrel_ || (!barrel_ && side_);
70  // determing sensor type
71  if (barrel_ && psModule_)
72  type_ = BarrelPS;
73  if (barrel_ && !psModule_)
74  type_ = Barrel2S;
75  if (!barrel_ && psModule_)
76  type_ = DiskPS;
77  if (!barrel_ && !psModule_)
78  type_ = Disk2S;
79  // encoding for 2S endcap radii
80  encodedR_ = -1;
81  if (type_ == Disk2S) {
82  const int offset = setup.hybridNumRingsPS(layer);
83  const int ring = trackerTopology->tidRing(detId);
85  }
86  // r and z offsets
87  if (barrel_) {
88  offsetR_ = setup.hybridLayerR(layer);
89  offsetZ_ = 0.;
90  } else {
91  offsetR_ = 0.;
92  offsetZ_ = side_ ? setup.hybridDiskZ(layer) : -setup.hybridDiskZ(layer);
93  }
94  // getting bend window size
95  double windowSize(-1.);
96  if (barrel_) {
97  enum TypeBarrel { nonBarrel = 0, tiltedMinus = 1, tiltedPlus = 2, flat = 3 };
98  const TypeBarrel type = static_cast<TypeBarrel>(trackerTopology->tobSide(detId));
99  if (type == flat)
100  windowSize = setup.windowSizeBarrelLayer(layerId_);
101  else {
102  int ladder = trackerTopology->tobRod(detId);
103  if (type == tiltedMinus)
104  // Corrected ring number, bet 0 and barrelNTilt.at(layer), in ascending |z|
105  ladder = 1 + setup.numTiltedLayerRing(layerId_) - ladder;
106  windowSize = setup.windowSizeTiltedLayerRing(layerId_, ladder);
107  }
108  } else {
109  const int ring = trackerTopology->tidRing(detId);
110  const int lay = layer + setup.offsetLayerId();
111  windowSize = setup.windowSizeEndcapDisksRing(lay, ring);
112  }
113  windowSize_ = windowSize / setup.baseWindowSize();
114  // getting encoded layer id
115  const vector<int>& encodingLayerId = setup.encodingLayerId(dtcId_);
116  const auto pos = find(encodingLayerId.begin(), encodingLayerId.end(), layerId_);
117  encodedLayerId_ = distance(encodingLayerId.begin(), pos);
118  }

References Barrel2S, barrel_, BarrelPS, funct::cos(), cos_, trackerDTC::deltaPhi(), Disk2S, DiskPS, HLT_FULL_cff::distance, dtcId_, encodedLayerId_, encodedR_, spr::find(), flipped_, TrackerGeometry::getDetectorType(), TrackerGeometry::idToDetUnit(), PVValHelper::ladder, TrackerTopology::layer(), layerId_, PV3DBase< T, PVType, FrameType >::mag(), mag(), PixelTopology::ncolumns(), PixelTopology::nrows(), numColumns_, numRows_, hltrates_dqm_sourceclient-live_cfg::offset, offsetR_, offsetZ_, TrackerTopology::partnerDetId(), PV3DBase< T, PVType, FrameType >::perp(), TrackerGeometry::Ph2PSP, PV3DBase< T, PVType, FrameType >::phi(), Basic3DVector< T >::phi(), phi_, PixelTopology::pitch(), pitchCol_, pitchRow_, GeomDet::position(), position, psModule_, r_, HLT_FULL_cff::region, relativeConstraints::ring, GloballyPositioned< T >::rotation(), sep_, singleTopDQM_cfi::setup, side_, signBend_, signCol_, signRow_, funct::sin(), sin_, DetId::subdetId(), TrackerTopology::tidRing(), TrackerTopology::tidWheel(), tilt_, StripSubdetector::TOB, TrackerTopology::tobRod(), TrackerTopology::tobSide(), type_, windowSize(), windowSize_, TkRotation< T >::x(), PV3DBase< T, PVType, FrameType >::z(), and z_.

◆ ~SensorModule()

trackerDTC::SensorModule::~SensorModule ( )
inline

Definition at line 14 of file SensorModule.h.

14 {}

Member Function Documentation

◆ barrel()

bool trackerDTC::SensorModule::barrel ( ) const
inline

Definition at line 27 of file SensorModule.h.

27 { return barrel_; }

References barrel_.

◆ cos()

double trackerDTC::SensorModule::cos ( ) const
inline

Definition at line 61 of file SensorModule.h.

61 { return cos_; }

References cos_.

Referenced by trackerDTC::Stub::Stub().

◆ dtcId()

int trackerDTC::SensorModule::dtcId ( ) const
inline

Definition at line 21 of file SensorModule.h.

21 { return dtcId_; }

References dtcId_.

Referenced by trackerDTC::ProducerED::produce().

◆ encodedLayerId()

int trackerDTC::SensorModule::encodedLayerId ( ) const
inline

Definition at line 65 of file SensorModule.h.

65 { return encodedLayerId_; }

References encodedLayerId_.

Referenced by trackerDTC::Stub::formatHybrid().

◆ encodedR()

int trackerDTC::SensorModule::encodedR ( ) const
inline

Definition at line 63 of file SensorModule.h.

63 { return encodedR_; }

References encodedR_.

Referenced by trackerDTC::Stub::Stub().

◆ flipped()

bool trackerDTC::SensorModule::flipped ( ) const
inline

Definition at line 31 of file SensorModule.h.

31 { return flipped_; }

References flipped_.

◆ layerId()

int trackerDTC::SensorModule::layerId ( ) const
inline

Definition at line 43 of file SensorModule.h.

43 { return layerId_; }

References layerId_.

Referenced by trackerDTC::Stub::formatTMTT().

◆ modId()

int trackerDTC::SensorModule::modId ( ) const
inline

Definition at line 23 of file SensorModule.h.

23 { return modId_; }

References modId_.

Referenced by trackerDTC::ProducerED::produce().

◆ numColumns()

int trackerDTC::SensorModule::numColumns ( ) const
inline

Definition at line 39 of file SensorModule.h.

39 { return numColumns_; }

References numColumns_.

Referenced by trackerDTC::Stub::Stub().

◆ numRows()

int trackerDTC::SensorModule::numRows ( ) const
inline

Definition at line 41 of file SensorModule.h.

41 { return numRows_; }

References numRows_.

Referenced by trackerDTC::Stub::Stub().

◆ offsetR()

double trackerDTC::SensorModule::offsetR ( ) const
inline

Definition at line 67 of file SensorModule.h.

67 { return offsetR_; }

References offsetR_.

Referenced by trackerDTC::Stub::Stub().

◆ offsetZ()

double trackerDTC::SensorModule::offsetZ ( ) const
inline

Definition at line 69 of file SensorModule.h.

69 { return offsetZ_; }

References offsetZ_.

Referenced by trackerDTC::Stub::Stub().

◆ phi()

double trackerDTC::SensorModule::phi ( void  ) const
inline

Definition at line 47 of file SensorModule.h.

47 { return phi_; }

References phi_.

Referenced by Particle.Particle::__str__(), ntupleDataFormat.Track::phiPull(), and trackerDTC::Stub::Stub().

◆ pitchCol()

double trackerDTC::SensorModule::pitchCol ( ) const
inline

Definition at line 55 of file SensorModule.h.

55 { return pitchCol_; }

References pitchCol_.

Referenced by trackerDTC::Stub::Stub().

◆ pitchRow()

double trackerDTC::SensorModule::pitchRow ( ) const
inline

Definition at line 53 of file SensorModule.h.

53 { return pitchRow_; }

References pitchRow_.

Referenced by trackerDTC::Stub::Stub().

◆ psModule()

bool trackerDTC::SensorModule::psModule ( ) const
inline

Definition at line 29 of file SensorModule.h.

29 { return psModule_; }

References psModule_.

Referenced by trackerDTC::Stub::Stub().

◆ r()

double trackerDTC::SensorModule::r ( ) const
inline

Definition at line 45 of file SensorModule.h.

45 { return r_; }

References r_.

Referenced by trackerDTC::Stub::Stub().

◆ sep()

double trackerDTC::SensorModule::sep ( ) const
inline

Definition at line 51 of file SensorModule.h.

51 { return sep_; }

References sep_.

Referenced by trackerDTC::Stub::Stub().

◆ side()

bool trackerDTC::SensorModule::side ( ) const
inline

Definition at line 25 of file SensorModule.h.

25 { return side_; }

References side_.

Referenced by trackerDTC::Stub::Stub().

◆ signBend()

bool trackerDTC::SensorModule::signBend ( ) const
inline

Definition at line 37 of file SensorModule.h.

37 { return signBend_; }

References signBend_.

Referenced by trackerDTC::Stub::Stub().

◆ signCol()

bool trackerDTC::SensorModule::signCol ( ) const
inline

Definition at line 35 of file SensorModule.h.

35 { return signCol_; }

References signCol_.

Referenced by trackerDTC::Stub::Stub().

◆ signRow()

bool trackerDTC::SensorModule::signRow ( ) const
inline

Definition at line 33 of file SensorModule.h.

33 { return signRow_; }

References signRow_.

Referenced by trackerDTC::Stub::Stub().

◆ sin()

double trackerDTC::SensorModule::sin ( ) const
inline

Definition at line 59 of file SensorModule.h.

59 { return sin_; }

References sin_.

Referenced by trackerDTC::Stub::Stub().

◆ tilt()

double trackerDTC::SensorModule::tilt ( ) const
inline

Definition at line 57 of file SensorModule.h.

57 { return tilt_; }

References tilt_.

◆ type()

Type trackerDTC::SensorModule::type ( ) const
inline

Definition at line 19 of file SensorModule.h.

19 { return type_; }

References type_.

Referenced by trackerDTC::Stub::formatHybrid(), and trackerDTC::Stub::Stub().

◆ windowSize()

int trackerDTC::SensorModule::windowSize ( ) const
inline

Definition at line 71 of file SensorModule.h.

71 { return windowSize_; }

References windowSize_.

Referenced by SensorModule(), and trackerDTC::Stub::Stub().

◆ z()

double trackerDTC::SensorModule::z ( ) const
inline

Definition at line 49 of file SensorModule.h.

49 { return z_; }

References z_.

Referenced by geometryXMLparser.Alignable::pos(), ntupleDataFormat._HitObject::r3D(), and trackerDTC::Stub::Stub().

Member Data Documentation

◆ barrel_

bool trackerDTC::SensorModule::barrel_
private

Definition at line 83 of file SensorModule.h.

Referenced by barrel(), and SensorModule().

◆ cos_

double trackerDTC::SensorModule::cos_
private

Definition at line 117 of file SensorModule.h.

Referenced by cos(), and SensorModule().

◆ detId_

DetId trackerDTC::SensorModule::detId_
private

Definition at line 75 of file SensorModule.h.

◆ dtcId_

int trackerDTC::SensorModule::dtcId_
private

Definition at line 77 of file SensorModule.h.

Referenced by dtcId(), and SensorModule().

◆ encodedLayerId_

int trackerDTC::SensorModule::encodedLayerId_
private

Definition at line 123 of file SensorModule.h.

Referenced by encodedLayerId(), and SensorModule().

◆ encodedR_

int trackerDTC::SensorModule::encodedR_
private

Definition at line 121 of file SensorModule.h.

Referenced by encodedR(), and SensorModule().

◆ flipped_

bool trackerDTC::SensorModule::flipped_
private

Definition at line 87 of file SensorModule.h.

Referenced by flipped(), and SensorModule().

◆ layerId_

int trackerDTC::SensorModule::layerId_
private

Definition at line 99 of file SensorModule.h.

Referenced by layerId(), and SensorModule().

◆ modId_

int trackerDTC::SensorModule::modId_
private

Definition at line 79 of file SensorModule.h.

Referenced by modId().

◆ numColumns_

int trackerDTC::SensorModule::numColumns_
private

Definition at line 95 of file SensorModule.h.

Referenced by numColumns(), and SensorModule().

◆ numRows_

int trackerDTC::SensorModule::numRows_
private

Definition at line 97 of file SensorModule.h.

Referenced by numRows(), and SensorModule().

◆ offsetR_

double trackerDTC::SensorModule::offsetR_
private

Definition at line 125 of file SensorModule.h.

Referenced by offsetR(), and SensorModule().

◆ offsetZ_

double trackerDTC::SensorModule::offsetZ_
private

Definition at line 127 of file SensorModule.h.

Referenced by offsetZ(), and SensorModule().

◆ phi_

double trackerDTC::SensorModule::phi_
private

Definition at line 103 of file SensorModule.h.

Referenced by phi(), and SensorModule().

◆ pitchCol_

double trackerDTC::SensorModule::pitchCol_
private

Definition at line 111 of file SensorModule.h.

Referenced by pitchCol(), and SensorModule().

◆ pitchRow_

double trackerDTC::SensorModule::pitchRow_
private

Definition at line 109 of file SensorModule.h.

Referenced by pitchRow(), and SensorModule().

◆ psModule_

bool trackerDTC::SensorModule::psModule_
private

Definition at line 85 of file SensorModule.h.

Referenced by psModule(), and SensorModule().

◆ r_

double trackerDTC::SensorModule::r_
private

Definition at line 101 of file SensorModule.h.

Referenced by r(), and SensorModule().

◆ sep_

double trackerDTC::SensorModule::sep_
private

Definition at line 107 of file SensorModule.h.

Referenced by SensorModule(), and sep().

◆ side_

bool trackerDTC::SensorModule::side_
private

Definition at line 81 of file SensorModule.h.

Referenced by SensorModule(), and side().

◆ signBend_

bool trackerDTC::SensorModule::signBend_
private

Definition at line 93 of file SensorModule.h.

Referenced by SensorModule(), and signBend().

◆ signCol_

bool trackerDTC::SensorModule::signCol_
private

Definition at line 91 of file SensorModule.h.

Referenced by SensorModule(), and signCol().

◆ signRow_

bool trackerDTC::SensorModule::signRow_
private

Definition at line 89 of file SensorModule.h.

Referenced by SensorModule(), and signRow().

◆ sin_

double trackerDTC::SensorModule::sin_
private

Definition at line 115 of file SensorModule.h.

Referenced by SensorModule(), and sin().

◆ tilt_

double trackerDTC::SensorModule::tilt_
private

Definition at line 113 of file SensorModule.h.

Referenced by SensorModule(), and tilt().

◆ type_

Type trackerDTC::SensorModule::type_
private

◆ windowSize_

int trackerDTC::SensorModule::windowSize_
private

Definition at line 129 of file SensorModule.h.

Referenced by SensorModule(), and windowSize().

◆ z_

double trackerDTC::SensorModule::z_
private

Definition at line 105 of file SensorModule.h.

Referenced by SensorModule(), and z().

GeomDet::position
const Surface::PositionType & position() const
The position (origin of the R.F.)
Definition: GeomDet.h:43
trackerDTC::SensorModule::numRows_
int numRows_
Definition: SensorModule.h:97
trackerDTC::SensorModule::NumTypes
Definition: SensorModule.h:16
trackerDTC::SensorModule::BarrelPS
Definition: SensorModule.h:16
trackerDTC::SensorModule::windowSize
int windowSize() const
Definition: SensorModule.h:71
trackerDTC::SensorModule::pitchCol_
double pitchCol_
Definition: SensorModule.h:111
GeomDet
Definition: GeomDet.h:27
trackerDTC::SensorModule::barrel_
bool barrel_
Definition: SensorModule.h:83
trackerDTC::SensorModule::flipped_
bool flipped_
Definition: SensorModule.h:87
TrackerTopology
Definition: TrackerTopology.h:16
pos
Definition: PixelAliasList.h:18
PixelTopology::pitch
virtual std::pair< float, float > pitch() const =0
trackerDTC::SensorModule::offsetZ_
double offsetZ_
Definition: SensorModule.h:127
trackerDTC::SensorModule::z_
double z_
Definition: SensorModule.h:105
trackerDTC::SensorModule::layerId_
int layerId_
Definition: SensorModule.h:99
TrackerTopology::layer
unsigned int layer(const DetId &id) const
Definition: TrackerTopology.cc:47
trackerDTC::SensorModule::tilt_
double tilt_
Definition: SensorModule.h:113
trackerDTC::SensorModule::phi_
double phi_
Definition: SensorModule.h:103
trackerDTC::SensorModule::offsetR_
double offsetR_
Definition: SensorModule.h:125
spr::find
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:19
TrackerGeometry::getDetectorType
ModuleType getDetectorType(DetId) const
Definition: TrackerGeometry.cc:247
trackerDTC::SensorModule::encodedR_
int encodedR_
Definition: SensorModule.h:121
singleTopDQM_cfi.setup
setup
Definition: singleTopDQM_cfi.py:37
TrackerTopology::tidRing
unsigned int tidRing(const DetId &id) const
Definition: TrackerTopology.h:218
TrackerTopology::tobRod
unsigned int tobRod(const DetId &id) const
Definition: TrackerTopology.h:195
TrackerTopology::tidWheel
unsigned int tidWheel(const DetId &id) const
Definition: TrackerTopology.h:201
funct::sin
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
TrackerGeometry::idToDetUnit
const TrackerGeomDet * idToDetUnit(DetId) const override
Return the pointer to the GeomDetUnit corresponding to a given DetId.
Definition: TrackerGeometry.cc:183
PV3DBase::z
T z() const
Definition: PV3DBase.h:61
trackerDTC::SensorModule::pitchRow_
double pitchRow_
Definition: SensorModule.h:109
trackerDTC::SensorModule::side_
bool side_
Definition: SensorModule.h:81
trackerDTC::SensorModule::windowSize_
int windowSize_
Definition: SensorModule.h:129
funct::cos
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
trackerDTC::SensorModule::dtcId
int dtcId() const
Definition: SensorModule.h:21
TrackerTopology::partnerDetId
DetId partnerDetId(const DetId &id) const
Definition: TrackerTopology.cc:233
PixelTopology::ncolumns
virtual int ncolumns() const =0
GlobalPoint
Global3DPoint GlobalPoint
Definition: GlobalPoint.h:10
trackerDTC::SensorModule::DiskPS
Definition: SensorModule.h:16
Point3DBase< float, GlobalTag >
PixelTopology
Definition: PixelTopology.h:10
trackerDTC::SensorModule::dtcId_
int dtcId_
Definition: SensorModule.h:77
trackerDTC::SensorModule::Disk2S
Definition: SensorModule.h:16
DetId::subdetId
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector's numbering enum)
Definition: DetId.h:48
trackerDTC::SensorModule::encodedLayerId_
int encodedLayerId_
Definition: SensorModule.h:123
trackerDTC::SensorModule::type_
Type type_
Definition: SensorModule.h:119
trackerDTC::SensorModule::signRow_
bool signRow_
Definition: SensorModule.h:89
trackerDTC::SensorModule::cos_
double cos_
Definition: SensorModule.h:117
type
type
Definition: SiPixelVCal_PayloadInspector.cc:37
position
static int position[264][3]
Definition: ReadPGInfo.cc:289
HLT_FULL_cff.region
region
Definition: HLT_FULL_cff.py:88338
trackerDTC::SensorModule::modId_
int modId_
Definition: SensorModule.h:79
trackerDTC::SensorModule::numColumns_
int numColumns_
Definition: SensorModule.h:95
trackerDTC::SensorModule::detId_
DetId detId_
Definition: SensorModule.h:75
PV3DBase::mag
T mag() const
Definition: PV3DBase.h:64
mag
T mag() const
The vector magnitude. Equivalent to sqrt(vec.mag2())
Definition: Basic3DVectorLD.h:127
trackerDTC::SensorModule::signBend_
bool signBend_
Definition: SensorModule.h:93
trackerDTC::deltaPhi
double deltaPhi(double lhs, double rhs=0.)
Definition: Setup.h:34
trackerDTC::SensorModule::sin_
double sin_
Definition: SensorModule.h:115
Plane
Definition: Plane.h:16
PVValHelper::ladder
Definition: PVValidationHelpers.h:72
relativeConstraints.ring
ring
Definition: relativeConstraints.py:68
trackerDTC::SensorModule::psModule_
bool psModule_
Definition: SensorModule.h:85
StripSubdetector::TOB
static constexpr auto TOB
Definition: StripSubdetector.h:18
TkRotation::x
Basic3DVector< T > x() const
Definition: extTkRotation.h:247
trackerDTC::SensorModule::modId
int modId() const
Definition: SensorModule.h:23
trackerDTC::SensorModule::r_
double r_
Definition: SensorModule.h:101
GloballyPositioned::rotation
const RotationType & rotation() const
Definition: GloballyPositioned.h:38
trackerDTC::SensorModule::sep_
double sep_
Definition: SensorModule.h:107
trackerDTC::SensorModule::signCol_
bool signCol_
Definition: SensorModule.h:91
hltrates_dqm_sourceclient-live_cfg.offset
offset
Definition: hltrates_dqm_sourceclient-live_cfg.py:82
PixelTopology::nrows
virtual int nrows() const =0
HLT_FULL_cff.distance
distance
Definition: HLT_FULL_cff.py:7799
PV3DBase::perp
T perp() const
Definition: PV3DBase.h:69
Basic3DVector::phi
Geom::Phi< T > phi() const
Definition: extBasic3DVector.h:132
PV3DBase::phi
Geom::Phi< T > phi() const
Definition: PV3DBase.h:66
TrackerTopology::tobSide
unsigned int tobSide(const DetId &id) const
Definition: TrackerTopology.h:180
TrackerGeometry::ModuleType::Ph2PSP
TrackerGeometry
Definition: TrackerGeometry.h:14
trackerDTC::SensorModule::Barrel2S
Definition: SensorModule.h:16