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
CSCCLCTDigiValidation Class Reference

#include <CSCCLCTDigiValidation.h>

Inheritance diagram for CSCCLCTDigiValidation:
CSCBaseValidation

Public Member Functions

void analyze (const edm::Event &, const edm::EventSetup &)
 
 CSCCLCTDigiValidation (DQMStore *dbe, const edm::InputTag &inputTag)
 
void endJob ()
 
 ~CSCCLCTDigiValidation ()
 
- 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

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 9 of file CSCCLCTDigiValidation.h.

Constructor & Destructor Documentation

CSCCLCTDigiValidation::CSCCLCTDigiValidation ( DQMStore dbe,
const edm::InputTag inputTag 
)

Definition at line 12 of file CSCCLCTDigiValidation.cc.

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

13 : CSCBaseValidation(dbe, inputTag),
16  theNDigisPerEventPlot( dbe_->book1D("CSCCLCTDigisPerEvent", "CSC CLCT Digis per event", 100, 0, 100) )
17 {
18  for(int i = 0; i < 10; ++i)
19  {
20  char title1[200], title2[200];
21  sprintf(title1, "CSCCLCTDigiTimeType%d", i+1);
22  sprintf(title2, "CSCCLCTDigisPerLayerType%d", i+1);
23  theTimeBinPlots[i] = dbe_->book1D(title1, title1, 20, 0, 20);
24  theNDigisPerLayerPlots[i] = dbe_->book1D(title2, title2, 100, 0, 20);
25  }
26 }
int i
Definition: DBlmapReader.cc:9
MonitorElement * theNDigisPerLayerPlots[10]
MonitorElement * book1D(const char *name, const char *title, int nchX, double lowX, double highX)
Book 1D histogram.
Definition: DQMStore.cc:717
MonitorElement * theTimeBinPlots[10]
CSCBaseValidation(DQMStore *dbe, const edm::InputTag &inputTag)
MonitorElement * theNDigisPerEventPlot
CSCCLCTDigiValidation::~CSCCLCTDigiValidation ( )

Definition at line 30 of file CSCCLCTDigiValidation.cc.

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

Member Function Documentation

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

Implements CSCBaseValidation.

Definition at line 43 of file CSCCLCTDigiValidation.cc.

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

Referenced by CSCDigiValidation::analyze().

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

Definition at line 16 of file CSCCLCTDigiValidation.h.

16 {}

Member Data Documentation

MonitorElement* CSCCLCTDigiValidation::theNDigisPerEventPlot
private

Definition at line 21 of file CSCCLCTDigiValidation.h.

MonitorElement* CSCCLCTDigiValidation::theNDigisPerLayerPlots[10]
private

Definition at line 20 of file CSCCLCTDigiValidation.h.

Referenced by analyze(), and CSCCLCTDigiValidation().

MonitorElement* CSCCLCTDigiValidation::theTimeBinPlots[10]
private

Definition at line 19 of file CSCCLCTDigiValidation.h.

Referenced by analyze(), and CSCCLCTDigiValidation().