CMS 3D CMS Logo

List of all members | Public Member Functions | Private Types | Private Member Functions | Static Private Member Functions | Private Attributes
CSCSegmentValidation Class Reference

#include <CSCSegmentValidation.h>

Inheritance diagram for CSCSegmentValidation:
CSCBaseValidation

Public Member Functions

void analyze (const edm::Event &, const edm::EventSetup &) override
 
void bookHistograms (DQMStore::IBooker &)
 
 CSCSegmentValidation (const edm::InputTag &inputTag, edm::ConsumesCollector &&iC)
 
 ~CSCSegmentValidation () override
 
- Public Member Functions inherited from CSCBaseValidation
 CSCBaseValidation (const edm::InputTag &inputTag)
 
void setGeometry (const CSCGeometry *geom)
 
void setSimHitMap (const PSimHitMap *simHitMap)
 
virtual ~CSCBaseValidation ()
 

Private Types

typedef std::map< int, std::vector< int > > ChamberHitMap
 
typedef std::map< int, std::vector< CSCSegment > > ChamberSegmentMap
 

Private Member Functions

void fillEfficiencyPlots ()
 
void fillLayerHitsPerChamber ()
 
bool hasSegment (int chamberId) const
 
const PSimHitkeyHit (int chamberId) const
 
void plotResolution (const PSimHit &simHit, const CSCSegment &recHit, const CSCLayer *layer, int chamberType)
 

Static Private Member Functions

static int whatChamberType (int detId)
 

Private Attributes

edm::EDGetTokenT< CSCSegmentCollectionsegments_Token_
 
ChamberSegmentMap theChamberSegmentMap
 
MonitorElementthedXdZPullPlots [10]
 
MonitorElementthedXdZResolutionPlots [10]
 
MonitorElementthedYdZPullPlots [10]
 
MonitorElementthedYdZResolutionPlots [10]
 
ChamberHitMap theLayerHitsPerChamber
 
MonitorElementtheNPerChamberTypePlot
 
MonitorElementtheNPerEventPlot
 
MonitorElementtheNRecHitsPlot
 
MonitorElementtheRdPhiPullPlots [10]
 
MonitorElementtheRdPhiResolutionPlots [10]
 
int theShowerThreshold
 
MonitorElementtheThetaPullPlots [10]
 
MonitorElementtheThetaResolutionPlots [10]
 
MonitorElementtheTypePlot4HitsNoShower
 
MonitorElementtheTypePlot4HitsNoShowerSeg
 
MonitorElementtheTypePlot4HitsShower
 
MonitorElementtheTypePlot4HitsShowerSeg
 
MonitorElementtheTypePlot5HitsNoShower
 
MonitorElementtheTypePlot5HitsNoShowerSeg
 
MonitorElementtheTypePlot5HitsShower
 
MonitorElementtheTypePlot5HitsShowerSeg
 
MonitorElementtheTypePlot6HitsNoShower
 
MonitorElementtheTypePlot6HitsNoShowerSeg
 
MonitorElementtheTypePlot6HitsShower
 
MonitorElementtheTypePlot6HitsShowerSeg
 

Additional Inherited Members

- Protected Member Functions inherited from CSCBaseValidation
const CSCLayerfindLayer (int detId) const
 
- Protected Attributes inherited from CSCBaseValidation
const CSCGeometrytheCSCGeometry
 
edm::InputTag theInputTag
 
const PSimHitMaptheSimHitMap
 

Detailed Description

Definition at line 12 of file CSCSegmentValidation.h.

Member Typedef Documentation

typedef std::map<int, std::vector<int> > CSCSegmentValidation::ChamberHitMap
private

Definition at line 29 of file CSCSegmentValidation.h.

typedef std::map<int, std::vector<CSCSegment> > CSCSegmentValidation::ChamberSegmentMap
private

Definition at line 36 of file CSCSegmentValidation.h.

Constructor & Destructor Documentation

CSCSegmentValidation::CSCSegmentValidation ( const edm::InputTag inputTag,
edm::ConsumesCollector &&  iC 
)

Definition at line 5 of file CSCSegmentValidation.cc.

References HiClusterCompatibility_cfi::inputTag, and segments_Token_.

8 }
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
CSCBaseValidation(const edm::InputTag &inputTag)
edm::EDGetTokenT< CSCSegmentCollection > segments_Token_
ChamberHitMap theLayerHitsPerChamber
ChamberSegmentMap theChamberSegmentMap
CSCSegmentValidation::~CSCSegmentValidation ( )
override

Definition at line 10 of file CSCSegmentValidation.cc.

10 {}

Member Function Documentation

void CSCSegmentValidation::analyze ( const edm::Event e,
const edm::EventSetup eventSetup 
)
overridevirtual

Implements CSCBaseValidation.

Definition at line 51 of file CSCSegmentValidation.cc.

References PSimHit::detUnitId(), MonitorElement::Fill(), fillEfficiencyPlots(), fillLayerHitsPerChamber(), CSCBaseValidation::findLayer(), edm::Event::getByToken(), keyHit(), plotResolution(), edm::Handle< T >::product(), segments_Token_, theChamberSegmentMap, theNPerChamberTypePlot, theNPerEventPlot, theNRecHitsPlot, and whatChamberType().

Referenced by CSCRecHitValidation::analyze().

51  {
52  // get the collection of CSCRecHsegmentItrD
54  e.getByToken(segments_Token_, hRecHits);
55  const CSCSegmentCollection *cscRecHits = hRecHits.product();
56 
57  theChamberSegmentMap.clear();
58  unsigned nPerEvent = 0;
59  for (CSCSegmentCollection::const_iterator segmentItr = cscRecHits->begin(); segmentItr != cscRecHits->end();
60  segmentItr++) {
61  ++nPerEvent;
62  int detId = segmentItr->geographicalId().rawId();
63  int chamberType = whatChamberType(detId);
64 
65  theNRecHitsPlot->Fill(segmentItr->nRecHits());
66  theNPerChamberTypePlot->Fill(chamberType);
67  theChamberSegmentMap[detId].push_back(*segmentItr);
68 
69  // do the resolution plots
70  const PSimHit *hit = keyHit(detId);
71  if (hit != nullptr) {
72  const CSCLayer *layer = findLayer(hit->detUnitId());
73  plotResolution(*hit, *segmentItr, layer, chamberType);
74  }
75  }
76 
77  theNPerEventPlot->Fill(nPerEvent);
78 
81 }
MonitorElement * theNPerEventPlot
void plotResolution(const PSimHit &simHit, const CSCSegment &recHit, const CSCLayer *layer, int chamberType)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
MonitorElement * theNPerChamberTypePlot
static int whatChamberType(int detId)
edm::EDGetTokenT< CSCSegmentCollection > segments_Token_
MonitorElement * theNRecHitsPlot
void Fill(long long x)
C::const_iterator const_iterator
constant access iterator type
Definition: RangeMap.h:43
T const * product() const
Definition: Handle.h:74
const PSimHit * keyHit(int chamberId) const
ChamberSegmentMap theChamberSegmentMap
const CSCLayer * findLayer(int detId) const
unsigned int detUnitId() const
Definition: PSimHit.h:97
void CSCSegmentValidation::bookHistograms ( DQMStore::IBooker iBooker)

Definition at line 12 of file CSCSegmentValidation.cc.

References DQMStore::IBooker::book1D(), mps_fire::i, thedXdZPullPlots, thedXdZResolutionPlots, thedYdZPullPlots, thedYdZResolutionPlots, theNPerChamberTypePlot, theNPerEventPlot, theNRecHitsPlot, theRdPhiPullPlots, theRdPhiResolutionPlots, theThetaPullPlots, theThetaResolutionPlots, theTypePlot4HitsNoShower, theTypePlot4HitsNoShowerSeg, theTypePlot4HitsShower, theTypePlot4HitsShowerSeg, theTypePlot5HitsNoShower, theTypePlot5HitsNoShowerSeg, theTypePlot5HitsShower, theTypePlot5HitsShowerSeg, theTypePlot6HitsNoShower, theTypePlot6HitsNoShowerSeg, theTypePlot6HitsShower, and theTypePlot6HitsShowerSeg.

Referenced by CSCRecHitValidation::bookHistograms().

12  {
13  theNPerEventPlot = iBooker.book1D("CSCSegmentsPerEvent", "Number of CSC segments per event", 100, 0, 50);
14  theNRecHitsPlot = iBooker.book1D("CSCRecHitsPerSegment", "Number of CSC rec hits per segment", 8, 0, 7);
16  iBooker.book1D("CSCSegmentsPerChamberType", "Number of CSC segments per chamber type", 11, 0, 10);
17  theTypePlot4HitsNoShower = iBooker.book1D("CSCSegments4HitsNoShower", "", 100, 0, 10);
18  theTypePlot4HitsNoShowerSeg = iBooker.book1D("CSCSegments4HitsNoShowerSeg", "", 100, 0, 10);
19  theTypePlot4HitsShower = iBooker.book1D("CSCSegments4HitsShower", "", 100, 0, 10);
20  theTypePlot4HitsShowerSeg = iBooker.book1D("CSCSegments4HitsShowerSeg", "", 100, 0, 10);
21  theTypePlot5HitsNoShower = iBooker.book1D("CSCSegments5HitsNoShower", "", 100, 0, 10);
22  theTypePlot5HitsNoShowerSeg = iBooker.book1D("CSCSegments5HitsNoShowerSeg", "", 100, 0, 10);
23  theTypePlot5HitsShower = iBooker.book1D("CSCSegments5HitsShower", "", 100, 0, 10);
24  theTypePlot5HitsShowerSeg = iBooker.book1D("CSCSegments5HitsShowerSeg", "", 100, 0, 10);
25  theTypePlot6HitsNoShower = iBooker.book1D("CSCSegments6HitsNoShower", "", 100, 0, 10);
26  theTypePlot6HitsNoShowerSeg = iBooker.book1D("CSCSegments6HitsNoShowerSeg", "", 100, 0, 10);
27  theTypePlot6HitsShower = iBooker.book1D("CSCSegments6HitsShower", "", 100, 0, 10);
28  theTypePlot6HitsShowerSeg = iBooker.book1D("CSCSegments6HitsShowerSeg", "", 100, 0, 10);
29  for (int i = 0; i < 10; ++i) {
30  char title1[200], title2[200], title3[200], title4[200], title5[200], title6[200], title7[200], title8[200];
31  sprintf(title1, "CSCSegmentRdPhiResolution%d", i + 1);
32  sprintf(title2, "CSCSegmentRdPhiPull%d", i + 1);
33  sprintf(title3, "CSCSegmentThetaResolution%d", i + 1);
34  sprintf(title4, "CSCSegmentThetaPull%d", i + 1);
35  sprintf(title5, "CSCSegmentdXdZResolution%d", i + 1);
36  sprintf(title6, "CSCSegmentdXdZPull%d", i + 1);
37  sprintf(title7, "CSCSegmentdYdZResolution%d", i + 1);
38  sprintf(title8, "CSCSegmentdYdZPull%d", i + 1);
39 
40  theRdPhiResolutionPlots[i] = iBooker.book1D(title1, title1, 100, -0.4, 0.4);
41  theRdPhiPullPlots[i] = iBooker.book1D(title2, title2, 100, -5, 5);
42  theThetaResolutionPlots[i] = iBooker.book1D(title3, title3, 100, -1, 1);
43  theThetaPullPlots[i] = iBooker.book1D(title4, title4, 100, -5, 5);
44  thedXdZResolutionPlots[i] = iBooker.book1D(title5, title5, 100, -1, 1);
45  thedXdZPullPlots[i] = iBooker.book1D(title6, title6, 100, -5, 5);
46  thedYdZResolutionPlots[i] = iBooker.book1D(title7, title7, 100, -1, 1);
47  thedYdZPullPlots[i] = iBooker.book1D(title8, title8, 100, -5, 5);
48  }
49 }
MonitorElement * theNPerEventPlot
MonitorElement * theTypePlot5HitsNoShowerSeg
MonitorElement * theTypePlot4HitsShowerSeg
MonitorElement * theNPerChamberTypePlot
MonitorElement * theTypePlot6HitsShower
MonitorElement * theTypePlot5HitsNoShower
MonitorElement * theNRecHitsPlot
MonitorElement * theTypePlot4HitsShower
MonitorElement * theRdPhiResolutionPlots[10]
MonitorElement * theTypePlot6HitsShowerSeg
MonitorElement * theTypePlot4HitsNoShower
MonitorElement * theTypePlot6HitsNoShowerSeg
MonitorElement * book1D(Args &&...args)
Definition: DQMStore.h:106
MonitorElement * theTypePlot6HitsNoShower
MonitorElement * thedYdZResolutionPlots[10]
MonitorElement * theRdPhiPullPlots[10]
MonitorElement * theThetaPullPlots[10]
MonitorElement * thedXdZPullPlots[10]
MonitorElement * theTypePlot5HitsShowerSeg
MonitorElement * theThetaResolutionPlots[10]
MonitorElement * theTypePlot4HitsNoShowerSeg
MonitorElement * theTypePlot5HitsShower
MonitorElement * thedXdZResolutionPlots[10]
MonitorElement * thedYdZPullPlots[10]
void CSCSegmentValidation::fillEfficiencyPlots ( )
private

Definition at line 83 of file CSCSegmentValidation.cc.

References MonitorElement::Fill(), hasSegment(), theLayerHitsPerChamber, theShowerThreshold, theTypePlot4HitsNoShower, theTypePlot4HitsNoShowerSeg, theTypePlot4HitsShower, theTypePlot4HitsShowerSeg, theTypePlot5HitsNoShower, theTypePlot5HitsNoShowerSeg, theTypePlot5HitsShower, theTypePlot5HitsShowerSeg, theTypePlot6HitsNoShower, theTypePlot6HitsNoShowerSeg, theTypePlot6HitsShower, theTypePlot6HitsShowerSeg, tier0::unique(), findQualityFiles::v, and whatChamberType().

Referenced by analyze().

83  {
84  // now plot efficiency by looping over all chambers with hits
85  for (ChamberHitMap::const_iterator mapItr = theLayerHitsPerChamber.begin(), mapEnd = theLayerHitsPerChamber.end();
86  mapItr != mapEnd;
87  ++mapItr) {
88  int chamberId = mapItr->first;
89  int nHitsInChamber = mapItr->second.size();
90  bool isShower = (nHitsInChamber > theShowerThreshold);
91  bool hasSeg = hasSegment(chamberId);
92  int chamberType = whatChamberType(chamberId);
93  // find how many layers were hit in this chamber
94  std::vector<int> v = mapItr->second;
95  std::sort(v.begin(), v.end());
96  // maybe can just count
97  v.erase(std::unique(v.begin(), v.end()), v.end());
98  int nLayersHit = v.size();
99 
100  if (nLayersHit == 4) {
101  if (isShower)
102  theTypePlot4HitsShower->Fill(chamberType);
103  else
104  theTypePlot4HitsNoShower->Fill(chamberType);
105 
106  if (hasSeg) {
107  if (isShower)
108  theTypePlot4HitsShowerSeg->Fill(chamberType);
109  else
110  theTypePlot4HitsNoShowerSeg->Fill(chamberType);
111  }
112  }
113 
114  if (nLayersHit == 5) {
115  if (isShower)
116  theTypePlot5HitsShower->Fill(chamberType);
117  else
118  theTypePlot5HitsNoShower->Fill(chamberType);
119 
120  if (hasSeg) {
121  if (isShower)
122  theTypePlot5HitsShowerSeg->Fill(chamberType);
123  else
124  theTypePlot5HitsNoShowerSeg->Fill(chamberType);
125  }
126  }
127 
128  if (nLayersHit == 6) {
129  if (isShower)
130  theTypePlot6HitsShower->Fill(chamberType);
131  else
132  theTypePlot6HitsNoShower->Fill(chamberType);
133 
134  if (hasSeg) {
135  if (isShower)
136  theTypePlot6HitsShowerSeg->Fill(chamberType);
137  else
138  theTypePlot6HitsNoShowerSeg->Fill(chamberType);
139  }
140  }
141  }
142 }
MonitorElement * theTypePlot5HitsNoShowerSeg
MonitorElement * theTypePlot4HitsShowerSeg
static int whatChamberType(int detId)
MonitorElement * theTypePlot6HitsShower
MonitorElement * theTypePlot5HitsNoShower
MonitorElement * theTypePlot4HitsShower
MonitorElement * theTypePlot6HitsShowerSeg
void Fill(long long x)
MonitorElement * theTypePlot4HitsNoShower
def unique(seq, keepstr=True)
Definition: tier0.py:25
MonitorElement * theTypePlot6HitsNoShowerSeg
MonitorElement * theTypePlot6HitsNoShower
ChamberHitMap theLayerHitsPerChamber
bool hasSegment(int chamberId) const
MonitorElement * theTypePlot5HitsShowerSeg
MonitorElement * theTypePlot4HitsNoShowerSeg
MonitorElement * theTypePlot5HitsShower
void CSCSegmentValidation::fillLayerHitsPerChamber ( )
private

Definition at line 185 of file CSCSegmentValidation.cc.

References CSCDetId::chamberId(), PSimHitMap::detsWithHits(), PSimHitMap::hits(), mps_fire::i, nhits, DetId::rawId(), theLayerHitsPerChamber, and CSCBaseValidation::theSimHitMap.

Referenced by analyze().

185  {
186  theLayerHitsPerChamber.clear();
187  std::vector<int> layersHit = theSimHitMap->detsWithHits();
188  for (std::vector<int>::const_iterator layerItr = layersHit.begin(), layersHitEnd = layersHit.end();
189  layerItr != layersHitEnd;
190  ++layerItr) {
191  CSCDetId layerId(*layerItr);
192  CSCDetId chamberId = layerId.chamberId();
193  int nhits = theSimHitMap->hits(*layerItr).size();
194  // multiple entries, so we can see showers
195  for (int i = 0; i < nhits; ++i) {
196  theLayerHitsPerChamber[chamberId.rawId()].push_back(*layerItr);
197  }
198  }
199 }
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:50
const PSimHitMap * theSimHitMap
const edm::PSimHitContainer & hits(int detId) const
Definition: PSimHitMap.cc:19
CSCDetId chamberId() const
Definition: CSCDetId.h:53
ChamberHitMap theLayerHitsPerChamber
std::vector< int > detsWithHits() const
Definition: PSimHitMap.cc:28
bool CSCSegmentValidation::hasSegment ( int  chamberId) const
private

Definition at line 144 of file CSCSegmentValidation.cc.

References theChamberSegmentMap.

Referenced by fillEfficiencyPlots().

144  {
145  return (theChamberSegmentMap.find(chamberId) != theChamberSegmentMap.end());
146 }
ChamberSegmentMap theChamberSegmentMap
const PSimHit * CSCSegmentValidation::keyHit ( int  chamberId) const
private

Definition at line 205 of file CSCSegmentValidation.cc.

References PSimHitMap::hits(), mps_fire::result, CSCSegmentValidationUtils::SimHitPabsLessThan(), and CSCBaseValidation::theSimHitMap.

Referenced by analyze().

205  {
206  const PSimHit *result = nullptr;
207  int layerId = chamberId + 3;
208  const edm::PSimHitContainer &layerHits = theSimHitMap->hits(layerId);
209 
210  if (!layerHits.empty()) {
211  // pick the hit with maximum energy
212  edm::PSimHitContainer::const_iterator hitItr =
213  std::max_element(layerHits.begin(), layerHits.end(), CSCSegmentValidationUtils::SimHitPabsLessThan);
214  result = &(*hitItr);
215  }
216  return result;
217 }
const PSimHitMap * theSimHitMap
const edm::PSimHitContainer & hits(int detId) const
Definition: PSimHitMap.cc:19
std::vector< PSimHit > PSimHitContainer
bool SimHitPabsLessThan(const PSimHit &p1, const PSimHit &p2)
void CSCSegmentValidation::plotResolution ( const PSimHit simHit,
const CSCSegment recHit,
const CSCLayer layer,
int  chamberType 
)
private

Definition at line 153 of file CSCSegmentValidation.cc.

References MonitorElement::Fill(), CSCSegment::localDirection(), PSimHit::localDirection(), CSCSegment::localDirectionError(), CSCSegment::localPosition(), PSimHit::localPosition(), CSCSegment::localPositionError(), PV3DBase< T, PVType, FrameType >::perp(), PV3DBase< T, PVType, FrameType >::phi(), mathSSE::sqrt(), thedXdZPullPlots, thedXdZResolutionPlots, thedYdZPullPlots, thedYdZResolutionPlots, theRdPhiPullPlots, theRdPhiResolutionPlots, PV3DBase< T, PVType, FrameType >::theta(), theThetaResolutionPlots, GeomDet::toGlobal(), PV3DBase< T, PVType, FrameType >::x(), LocalError::xx(), PV3DBase< T, PVType, FrameType >::y(), LocalError::yy(), and PV3DBase< T, PVType, FrameType >::z().

Referenced by analyze().

156  {
157  GlobalPoint simHitPos = layer->toGlobal(simHit.localPosition());
158  GlobalPoint segmentPos = layer->toGlobal(segment.localPosition());
159  LocalVector simHitDir = simHit.localDirection();
160  LocalVector segmentDir = segment.localDirection();
161 
162  double dphi = segmentPos.phi() - simHitPos.phi();
163  double rdphi = segmentPos.perp() * dphi;
164  double dtheta = segmentPos.theta() - simHitPos.theta();
165 
166  double sigmax = sqrt(segment.localPositionError().xx());
167  // double sigmay = sqrt(segment.localPositionError().yy());
168 
169  double ddxdz = segmentDir.x() / segmentDir.z() - simHitDir.x() / simHitDir.z();
170  double ddydz = segmentDir.y() / segmentDir.z() - simHitDir.y() / simHitDir.z();
171  double sigmadxdz = sqrt(segment.localDirectionError().xx());
172  double sigmadydz = sqrt(segment.localDirectionError().yy());
173 
174  theRdPhiResolutionPlots[chamberType - 1]->Fill(rdphi);
175  theRdPhiPullPlots[chamberType - 1]->Fill(rdphi / sigmax);
176  theThetaResolutionPlots[chamberType - 1]->Fill(dtheta);
177  // theThetaPullPlots[chamberType-1]->Fill( dy/sigmay );
178 
179  thedXdZResolutionPlots[chamberType - 1]->Fill(ddxdz);
180  thedXdZPullPlots[chamberType - 1]->Fill(ddxdz / sigmadxdz);
181  thedYdZResolutionPlots[chamberType - 1]->Fill(ddydz);
182  thedYdZPullPlots[chamberType - 1]->Fill(ddydz / sigmadydz);
183 }
T perp() const
Definition: PV3DBase.h:72
GlobalPoint toGlobal(const Local2DPoint &lp) const
Conversion to the global R.F. from the R.F. of the GeomDet.
Definition: GeomDet.h:54
Geom::Phi< T > phi() const
Definition: PV3DBase.h:69
T y() const
Definition: PV3DBase.h:63
MonitorElement * theRdPhiResolutionPlots[10]
void Fill(long long x)
Geom::Theta< T > theta() const
Definition: PV3DBase.h:75
Local3DPoint localPosition() const
Definition: PSimHit.h:52
T sqrt(T t)
Definition: SSEVec.h:18
T z() const
Definition: PV3DBase.h:64
MonitorElement * thedYdZResolutionPlots[10]
MonitorElement * theRdPhiPullPlots[10]
LocalVector localDirection() const
Obsolete. Same as momentumAtEntry().unit(), for backward compatibility.
Definition: PSimHit.h:58
MonitorElement * thedXdZPullPlots[10]
MonitorElement * theThetaResolutionPlots[10]
T x() const
Definition: PV3DBase.h:62
MonitorElement * thedXdZResolutionPlots[10]
MonitorElement * thedYdZPullPlots[10]
int CSCSegmentValidation::whatChamberType ( int  detId)
staticprivate

Definition at line 148 of file CSCSegmentValidation.cc.

References CSCDetId::ring(), CSCDetId::station(), and CSCChamberSpecs::whatChamberType().

Referenced by analyze(), and fillEfficiencyPlots().

148  {
149  CSCDetId cscDetId(detId);
150  return CSCChamberSpecs::whatChamberType(cscDetId.station(), cscDetId.ring());
151 }
static int whatChamberType(int istation, int iring)

Member Data Documentation

edm::EDGetTokenT<CSCSegmentCollection> CSCSegmentValidation::segments_Token_
private

Definition at line 25 of file CSCSegmentValidation.h.

Referenced by analyze(), and CSCSegmentValidation().

ChamberSegmentMap CSCSegmentValidation::theChamberSegmentMap
private

Definition at line 37 of file CSCSegmentValidation.h.

Referenced by analyze(), and hasSegment().

MonitorElement* CSCSegmentValidation::thedXdZPullPlots[10]
private

Definition at line 49 of file CSCSegmentValidation.h.

Referenced by bookHistograms(), and plotResolution().

MonitorElement* CSCSegmentValidation::thedXdZResolutionPlots[10]
private

Definition at line 48 of file CSCSegmentValidation.h.

Referenced by bookHistograms(), and plotResolution().

MonitorElement* CSCSegmentValidation::thedYdZPullPlots[10]
private

Definition at line 51 of file CSCSegmentValidation.h.

Referenced by bookHistograms(), and plotResolution().

MonitorElement* CSCSegmentValidation::thedYdZResolutionPlots[10]
private

Definition at line 50 of file CSCSegmentValidation.h.

Referenced by bookHistograms(), and plotResolution().

ChamberHitMap CSCSegmentValidation::theLayerHitsPerChamber
private

Definition at line 30 of file CSCSegmentValidation.h.

Referenced by fillEfficiencyPlots(), and fillLayerHitsPerChamber().

MonitorElement* CSCSegmentValidation::theNPerChamberTypePlot
private

Definition at line 43 of file CSCSegmentValidation.h.

Referenced by analyze(), and bookHistograms().

MonitorElement* CSCSegmentValidation::theNPerEventPlot
private

Definition at line 41 of file CSCSegmentValidation.h.

Referenced by analyze(), and bookHistograms().

MonitorElement* CSCSegmentValidation::theNRecHitsPlot
private

Definition at line 42 of file CSCSegmentValidation.h.

Referenced by analyze(), and bookHistograms().

MonitorElement* CSCSegmentValidation::theRdPhiPullPlots[10]
private

Definition at line 45 of file CSCSegmentValidation.h.

Referenced by bookHistograms(), and plotResolution().

MonitorElement* CSCSegmentValidation::theRdPhiResolutionPlots[10]
private

Definition at line 44 of file CSCSegmentValidation.h.

Referenced by bookHistograms(), and plotResolution().

int CSCSegmentValidation::theShowerThreshold
private

Definition at line 39 of file CSCSegmentValidation.h.

Referenced by fillEfficiencyPlots().

MonitorElement* CSCSegmentValidation::theThetaPullPlots[10]
private

Definition at line 47 of file CSCSegmentValidation.h.

Referenced by bookHistograms().

MonitorElement* CSCSegmentValidation::theThetaResolutionPlots[10]
private

Definition at line 46 of file CSCSegmentValidation.h.

Referenced by bookHistograms(), and plotResolution().

MonitorElement* CSCSegmentValidation::theTypePlot4HitsNoShower
private

Definition at line 53 of file CSCSegmentValidation.h.

Referenced by bookHistograms(), and fillEfficiencyPlots().

MonitorElement* CSCSegmentValidation::theTypePlot4HitsNoShowerSeg
private

Definition at line 54 of file CSCSegmentValidation.h.

Referenced by bookHistograms(), and fillEfficiencyPlots().

MonitorElement* CSCSegmentValidation::theTypePlot4HitsShower
private

Definition at line 55 of file CSCSegmentValidation.h.

Referenced by bookHistograms(), and fillEfficiencyPlots().

MonitorElement* CSCSegmentValidation::theTypePlot4HitsShowerSeg
private

Definition at line 56 of file CSCSegmentValidation.h.

Referenced by bookHistograms(), and fillEfficiencyPlots().

MonitorElement* CSCSegmentValidation::theTypePlot5HitsNoShower
private

Definition at line 57 of file CSCSegmentValidation.h.

Referenced by bookHistograms(), and fillEfficiencyPlots().

MonitorElement* CSCSegmentValidation::theTypePlot5HitsNoShowerSeg
private

Definition at line 58 of file CSCSegmentValidation.h.

Referenced by bookHistograms(), and fillEfficiencyPlots().

MonitorElement* CSCSegmentValidation::theTypePlot5HitsShower
private

Definition at line 59 of file CSCSegmentValidation.h.

Referenced by bookHistograms(), and fillEfficiencyPlots().

MonitorElement* CSCSegmentValidation::theTypePlot5HitsShowerSeg
private

Definition at line 60 of file CSCSegmentValidation.h.

Referenced by bookHistograms(), and fillEfficiencyPlots().

MonitorElement* CSCSegmentValidation::theTypePlot6HitsNoShower
private

Definition at line 61 of file CSCSegmentValidation.h.

Referenced by bookHistograms(), and fillEfficiencyPlots().

MonitorElement* CSCSegmentValidation::theTypePlot6HitsNoShowerSeg
private

Definition at line 62 of file CSCSegmentValidation.h.

Referenced by bookHistograms(), and fillEfficiencyPlots().

MonitorElement* CSCSegmentValidation::theTypePlot6HitsShower
private

Definition at line 63 of file CSCSegmentValidation.h.

Referenced by bookHistograms(), and fillEfficiencyPlots().

MonitorElement* CSCSegmentValidation::theTypePlot6HitsShowerSeg
private

Definition at line 64 of file CSCSegmentValidation.h.

Referenced by bookHistograms(), and fillEfficiencyPlots().