CMS 3D CMS Logo

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

#include <CSCStripDigiValidation.h>

Inheritance diagram for CSCStripDigiValidation:
CSCBaseValidation

Public Member Functions

void analyze (const edm::Event &e, const edm::EventSetup &)
 
void bookHistograms (DQMStore::IBooker &, bool doSim)
 
 CSCStripDigiValidation (const edm::InputTag &inputTag, edm::ConsumesCollector &&iC)
 
void plotResolution (const PSimHit &hit, int strip, const CSCLayer *layer, int chamberType)
 
void setGeometry (const CSCGeometry *geom)
 
 ~CSCStripDigiValidation ()
 
- Public Member Functions inherited from CSCBaseValidation
 CSCBaseValidation (const edm::InputTag &inputTag)
 
void setGeometry (const CSCGeometry *geom)
 
void setSimHitMap (const PSimHitMap *simHitMap)
 
virtual ~CSCBaseValidation ()
 

Private Member Functions

void fillPedestalPlots (const CSCStripDigi &digi)
 
void fillSignalPlots (const CSCStripDigi &digi)
 

Private Attributes

edm::EDGetTokenT
< CSCStripDigiCollection
strips_Token_
 
MonitorElementtheAmplitudePlot
 
MonitorElementtheNDigisPerChamberPlot
 
MonitorElementtheNDigisPerEventPlot
 
MonitorElementtheNDigisPerLayerPlot
 
int thePedestalCount
 
float thePedestalCovarianceSum
 
MonitorElementthePedestalNeighborCorrelationPlot
 
MonitorElementthePedestalPlot
 
float thePedestalSum
 
MonitorElementthePedestalTimeCorrelationPlot
 
MonitorElementtheRatio4to5Plot
 
MonitorElementtheRatio6to5Plot
 
MonitorElementtheResolutionPlots [10]
 

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 CSCStripDigiValidation.h.

Constructor & Destructor Documentation

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

Definition at line 7 of file CSCStripDigiValidation.cc.

References beam_dqm_sourceclient-live_cfg::inputTag, and strips_Token_.

8  :
9  CSCBaseValidation(inputTag),
10  thePedestalSum(0),
16 {
18 }
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
CSCBaseValidation(const edm::InputTag &inputTag)
edm::EDGetTokenT< CSCStripDigiCollection > strips_Token_
MonitorElement * theNDigisPerChamberPlot
MonitorElement * thePedestalTimeCorrelationPlot
MonitorElement * thePedestalNeighborCorrelationPlot
CSCStripDigiValidation::~CSCStripDigiValidation ( )

Definition at line 20 of file CSCStripDigiValidation.cc.

21 {
22 }

Member Function Documentation

void CSCStripDigiValidation::analyze ( const edm::Event e,
const edm::EventSetup  
)
virtual

Implements CSCBaseValidation.

Definition at line 43 of file CSCStripDigiValidation.cc.

References edm::InputTag::encode(), MonitorElement::Fill(), fillPedestalPlots(), fillSignalPlots(), edm::Event::getByToken(), edm::HandleBase::isValid(), j, prof2calltree::last, EcalCondDBWriter_cfi::pedestal, RecoTauPiZeroBuilderPlugins_cfi::strips, strips_Token_, CSCBaseValidation::theInputTag, theNDigisPerEventPlot, theNDigisPerLayerPlot, thePedestalCount, and thePedestalSum.

Referenced by CSCDigiValidation::analyze().

45 {
47  e.getByToken(strips_Token_, strips);
48  if (!strips.isValid()) {
49  edm::LogError("CSCDigiValidation") << "Cannot get strips by label "
50  << theInputTag.encode();
51  }
52 
53  unsigned nDigisPerEvent = 0;
54 
55  for (CSCStripDigiCollection::DigiRangeIterator j=strips->begin(); j!=strips->end(); j++) {
56  std::vector<CSCStripDigi>::const_iterator digiItr = (*j).second.first;
57  std::vector<CSCStripDigi>::const_iterator last = (*j).second.second;
58  int nDigis = last-digiItr;
59  nDigisPerEvent += nDigis;
60  theNDigisPerLayerPlot->Fill(nDigis);
61 
62  double maxAmplitude = 0.;
63  // int maxStrip = 0;
64 
65  for( ; digiItr != last; ++digiItr) {
66  // average up the pedestals
67  std::vector<int> adcCounts = digiItr->getADCCounts();
68  thePedestalSum += adcCounts[0];
69  thePedestalSum += adcCounts[1];
70  thePedestalCount += 2;
72  if(adcCounts[4]-pedestal > maxAmplitude)
73  {
74  // maxStrip = digiItr->getStrip();
75  maxAmplitude = adcCounts[4]-pedestal;
76  }
77 
78  // if we have enough pedestal statistics
79  if(thePedestalCount > 100)
80  {
81  fillPedestalPlots(*digiItr);
82 
83  // see if it's big enough to count as "signal"
84  if(adcCounts[5] > (thePedestalSum/thePedestalCount + 100))
85  {
86  fillSignalPlots(*digiItr);
87  }
88  }
89  }
90  } // loop over digis
91 
92  theNDigisPerEventPlot->Fill(nDigisPerEvent);
93 }
edm::InputTag theInputTag
MonitorElement * theNDigisPerEventPlot
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:457
void fillSignalPlots(const CSCStripDigi &digi)
std::string encode() const
Definition: InputTag.cc:164
void Fill(long long x)
edm::EDGetTokenT< CSCStripDigiCollection > strips_Token_
MonitorElement * theNDigisPerLayerPlot
int j
Definition: DBlmapReader.cc:9
bool isValid() const
Definition: HandleBase.h:75
void fillPedestalPlots(const CSCStripDigi &digi)
void CSCStripDigiValidation::bookHistograms ( DQMStore::IBooker iBooker,
bool  doSim 
)

Definition at line 24 of file CSCStripDigiValidation.cc.

References DQMStore::IBooker::book1D(), i, theAmplitudePlot, theNDigisPerEventPlot, theNDigisPerLayerPlot, thePedestalPlot, theRatio4to5Plot, theRatio6to5Plot, and theResolutionPlots.

Referenced by CSCDigiValidation::bookHistograms().

26 {
27  thePedestalPlot = iBooker.book1D("CSCPedestal", "CSC Pedestal ", 400, 550, 650);
28  theAmplitudePlot = iBooker.book1D("CSCStripAmplitude", "CSC Strip Amplitude", 200, 0, 2000);
29  theRatio4to5Plot = iBooker.book1D("CSCStrip4to5", "CSC Strip Ratio tbin 4 to tbin 5", 100, 0, 1);
30  theRatio6to5Plot = iBooker.book1D("CSCStrip6to5", "CSC Strip Ratio tbin 6 to tbin 5", 120, 0, 1.2);
31  theNDigisPerLayerPlot = iBooker.book1D("CSCStripDigisPerLayer", "Number of CSC Strip Digis per layer", 48, 0, 48);
32  theNDigisPerEventPlot = iBooker.book1D("CSCStripDigisPerEvent", "Number of CSC Strip Digis per event", 100, 0, 500);
33  if(doSim) {
34  for(int i = 0; i < 10; ++i)
35  {
36  char title1[200];
37  sprintf(title1, "CSCStripDigiResolution%d", i+1);
38  theResolutionPlots[i] = iBooker.book1D(title1, title1, 100, -5, 5);
39  }
40  }
41 }
int i
Definition: DBlmapReader.cc:9
MonitorElement * theNDigisPerEventPlot
MonitorElement * theRatio4to5Plot
MonitorElement * theRatio6to5Plot
MonitorElement * thePedestalPlot
MonitorElement * theNDigisPerLayerPlot
MonitorElement * book1D(Args &&...args)
Definition: DQMStore.h:115
MonitorElement * theAmplitudePlot
MonitorElement * theResolutionPlots[10]
void CSCStripDigiValidation::fillPedestalPlots ( const CSCStripDigi digi)
private

Definition at line 96 of file CSCStripDigiValidation.cc.

References MonitorElement::Fill(), CSCStripDigi::getADCCounts(), and thePedestalPlot.

Referenced by analyze().

97 {
98  std::vector<int> adcCounts = digi.getADCCounts();
99  thePedestalPlot->Fill(adcCounts[0]);
100  thePedestalPlot->Fill(adcCounts[1]);
101 }
std::vector< int > const & getADCCounts() const
Get ADC readings.
Definition: CSCStripDigi.h:54
void Fill(long long x)
MonitorElement * thePedestalPlot
void CSCStripDigiValidation::fillSignalPlots ( const CSCStripDigi digi)
private

Definition at line 105 of file CSCStripDigiValidation.cc.

References MonitorElement::Fill(), CSCStripDigi::getADCCounts(), EcalCondDBWriter_cfi::pedestal, theAmplitudePlot, thePedestalCount, thePedestalSum, theRatio4to5Plot, and theRatio6to5Plot.

Referenced by analyze().

106 {
107  std::vector<int> adcCounts = digi.getADCCounts();
109  theAmplitudePlot->Fill(adcCounts[4] - pedestal);
110  theRatio4to5Plot->Fill( (adcCounts[3]-pedestal) / (adcCounts[4]-pedestal) );
111  theRatio6to5Plot->Fill( (adcCounts[5]-pedestal) / (adcCounts[4]-pedestal) );
112 }
MonitorElement * theRatio4to5Plot
std::vector< int > const & getADCCounts() const
Get ADC readings.
Definition: CSCStripDigi.h:54
MonitorElement * theRatio6to5Plot
void Fill(long long x)
MonitorElement * theAmplitudePlot
void CSCStripDigiValidation::plotResolution ( const PSimHit hit,
int  strip,
const CSCLayer layer,
int  chamberType 
)

Definition at line 115 of file CSCStripDigiValidation.cc.

References MonitorElement::Fill(), CSCLayer::geometry(), PSimHit::localPosition(), theResolutionPlots, PV3DBase< T, PVType, FrameType >::x(), CSCLayerGeometry::xOfStrip(), and PV3DBase< T, PVType, FrameType >::y().

117 {
118  double hitX = hit.localPosition().x();
119  double hitY = hit.localPosition().y();
120  double digiX = layer->geometry()->xOfStrip(strip, hitY);
121  theResolutionPlots[chamberType-1]->Fill(digiX - hitX);
122 }
T y() const
Definition: PV3DBase.h:63
void Fill(long long x)
float xOfStrip(int strip, float y=0.) const
Local3DPoint localPosition() const
Definition: PSimHit.h:44
MonitorElement * theResolutionPlots[10]
T x() const
Definition: PV3DBase.h:62
const CSCLayerGeometry * geometry() const
Definition: CSCLayer.h:47
void CSCStripDigiValidation::setGeometry ( const CSCGeometry geom)
inline

Member Data Documentation

edm::EDGetTokenT<CSCStripDigiCollection> CSCStripDigiValidation::strips_Token_
private

Definition at line 28 of file CSCStripDigiValidation.h.

Referenced by analyze(), and CSCStripDigiValidation().

MonitorElement* CSCStripDigiValidation::theAmplitudePlot
private

Definition at line 35 of file CSCStripDigiValidation.h.

Referenced by bookHistograms(), and fillSignalPlots().

MonitorElement* CSCStripDigiValidation::theNDigisPerChamberPlot
private

Definition at line 39 of file CSCStripDigiValidation.h.

MonitorElement* CSCStripDigiValidation::theNDigisPerEventPlot
private

Definition at line 40 of file CSCStripDigiValidation.h.

Referenced by analyze(), and bookHistograms().

MonitorElement* CSCStripDigiValidation::theNDigisPerLayerPlot
private

Definition at line 38 of file CSCStripDigiValidation.h.

Referenced by analyze(), and bookHistograms().

int CSCStripDigiValidation::thePedestalCount
private

Definition at line 31 of file CSCStripDigiValidation.h.

Referenced by analyze(), and fillSignalPlots().

float CSCStripDigiValidation::thePedestalCovarianceSum
private

Definition at line 30 of file CSCStripDigiValidation.h.

MonitorElement* CSCStripDigiValidation::thePedestalNeighborCorrelationPlot
private

Definition at line 34 of file CSCStripDigiValidation.h.

MonitorElement* CSCStripDigiValidation::thePedestalPlot
private

Definition at line 32 of file CSCStripDigiValidation.h.

Referenced by bookHistograms(), and fillPedestalPlots().

float CSCStripDigiValidation::thePedestalSum
private

Definition at line 29 of file CSCStripDigiValidation.h.

Referenced by analyze(), and fillSignalPlots().

MonitorElement* CSCStripDigiValidation::thePedestalTimeCorrelationPlot
private

Definition at line 33 of file CSCStripDigiValidation.h.

MonitorElement* CSCStripDigiValidation::theRatio4to5Plot
private

Definition at line 36 of file CSCStripDigiValidation.h.

Referenced by bookHistograms(), and fillSignalPlots().

MonitorElement* CSCStripDigiValidation::theRatio6to5Plot
private

Definition at line 37 of file CSCStripDigiValidation.h.

Referenced by bookHistograms(), and fillSignalPlots().

MonitorElement* CSCStripDigiValidation::theResolutionPlots[10]
private

Definition at line 41 of file CSCStripDigiValidation.h.

Referenced by bookHistograms(), and plotResolution().