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 Attributes
CSCALCTDigiValidation Class Reference

#include <CSCALCTDigiValidation.h>

Inheritance diagram for CSCALCTDigiValidation:
CSCBaseValidation

Public Member Functions

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

Private Attributes

edm::EDGetTokenT
< CSCALCTDigiCollection
alcts_Token_
 
MonitorElementtheNDigisPerEventPlot
 
MonitorElementtheNDigisPerLayerPlots [10]
 
MonitorElementtheTimeBinPlots [10]
 

Additional Inherited Members

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

Detailed Description

Definition at line 12 of file CSCALCTDigiValidation.h.

Constructor & Destructor Documentation

CSCALCTDigiValidation::CSCALCTDigiValidation ( DQMStore dbe,
const edm::InputTag inputTag,
edm::ConsumesCollector &&  iC 
)

Definition at line 11 of file CSCALCTDigiValidation.cc.

References alcts_Token_, DQMStore::book1D(), CSCBaseValidation::dbe_, i, theNDigisPerLayerPlots, and theTimeBinPlots.

14  : CSCBaseValidation(dbe, inputTag),
17  theNDigisPerEventPlot( dbe_->book1D("CSCALCTDigisPerEvent", "CSC ALCT Digis per event", 100, 0, 100) )
18 {
20 
21  for(int i = 0; i < 10; ++i)
22  {
23  char title1[200], title2[200];
24  sprintf(title1, "CSCALCTDigiTimeType%d", i+1);
25  sprintf(title2, "CSCALCTDigisPerLayerType%d", i+1);
26  theTimeBinPlots[i] = dbe_->book1D(title1, title1, 20, 0, 20);
27  theNDigisPerLayerPlots[i] = dbe_->book1D(title2, title2, 100, 0, 20);
28  }
29 }
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
int i
Definition: DBlmapReader.cc:9
MonitorElement * theTimeBinPlots[10]
MonitorElement * book1D(const char *name, const char *title, int nchX, double lowX, double highX)
Book 1D histogram.
Definition: DQMStore.cc:954
edm::EDGetTokenT< CSCALCTDigiCollection > alcts_Token_
CSCBaseValidation(DQMStore *dbe, const edm::InputTag &inputTag)
MonitorElement * theNDigisPerLayerPlots[10]
MonitorElement * theNDigisPerEventPlot
CSCALCTDigiValidation::~CSCALCTDigiValidation ( )

Definition at line 33 of file CSCALCTDigiValidation.cc.

34 {
35  // for(int i = 0; i < 10; ++i)
36  // {
37  // edm::LogInfo("CSCDigiValidation") << "Mean of " << theTimeBinPlots[i]->getName()
38  // << " is " << theTimeBinPlots[i]->getMean()
39  // << " +/- " << theTimeBinPlots[i]->getRMS();
40  // }
41 }

Member Function Documentation

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

Implements CSCBaseValidation.

Definition at line 44 of file CSCALCTDigiValidation.cc.

References alcts_Token_, edm::InputTag::encode(), MonitorElement::Fill(), edm::Event::getByToken(), CSCDetId::iChamberType(), edm::HandleBase::isValid(), j, CSCBaseValidation::theInputTag, theNDigisPerLayerPlots, and theTimeBinPlots.

Referenced by CSCDigiValidation::analyze().

45 {
47 
48  e.getByToken(alcts_Token_, alcts);
49  if (!alcts.isValid()) {
50  edm::LogError("CSCDigiDump") << "Cannot get alcts by label " << theInputTag.encode();
51  }
52  unsigned nDigisPerEvent = 0;
53 
54  for (CSCALCTDigiCollection::DigiRangeIterator j=alcts->begin(); j!=alcts->end(); j++) {
55  std::vector<CSCALCTDigi>::const_iterator beginDigi = (*j).second.first;
56  std::vector<CSCALCTDigi>::const_iterator endDigi = (*j).second.second;
57  CSCDetId detId((*j).first.rawId());
58  int chamberType = detId.iChamberType();
59  int nDigis = endDigi-beginDigi;
60  nDigisPerEvent += nDigis;
61  theNDigisPerLayerPlots[chamberType-1]->Fill(nDigis);
62 
63  for( std::vector<CSCALCTDigi>::const_iterator digiItr = beginDigi;
64  digiItr != endDigi; ++digiItr)
65  {
66  theTimeBinPlots[chamberType-1]->Fill(digiItr->getBX());
67  }
68  }
69 }
edm::InputTag theInputTag
MonitorElement * theTimeBinPlots[10]
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:434
std::string encode() const
Definition: InputTag.cc:164
void Fill(long long x)
edm::EDGetTokenT< CSCALCTDigiCollection > alcts_Token_
int j
Definition: DBlmapReader.cc:9
bool isValid() const
Definition: HandleBase.h:76
unsigned short iChamberType()
Definition: CSCDetId.h:120
MonitorElement * theNDigisPerLayerPlots[10]
void CSCALCTDigiValidation::endJob ( void  )
inline

Definition at line 20 of file CSCALCTDigiValidation.h.

20 {}

Member Data Documentation

edm::EDGetTokenT<CSCALCTDigiCollection> CSCALCTDigiValidation::alcts_Token_
private

Definition at line 23 of file CSCALCTDigiValidation.h.

Referenced by analyze(), and CSCALCTDigiValidation().

MonitorElement* CSCALCTDigiValidation::theNDigisPerEventPlot
private

Definition at line 27 of file CSCALCTDigiValidation.h.

MonitorElement* CSCALCTDigiValidation::theNDigisPerLayerPlots[10]
private

Definition at line 26 of file CSCALCTDigiValidation.h.

Referenced by analyze(), and CSCALCTDigiValidation().

MonitorElement* CSCALCTDigiValidation::theTimeBinPlots[10]
private

Definition at line 25 of file CSCALCTDigiValidation.h.

Referenced by analyze(), and CSCALCTDigiValidation().