CMS 3D CMS Logo

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

#include <EcalPreshowerNoiseDistrib.h>

Inheritance diagram for EcalPreshowerNoiseDistrib:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 EcalPreshowerNoiseDistrib (const edm::ParameterSet &ps)
 Constructor. More...
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 
- Public Member Functions inherited from edm::EDConsumerBase
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Protected Member Functions

void analyze (const edm::Event &e, const edm::EventSetup &c)
 Analyze. More...
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Private Types

typedef std::map< uint32_t,
float, std::less< uint32_t > > 
MapType
 

Private Attributes

DQMStoredbe_
 
edm::EDGetTokenT
< ESDigiCollection
ESdigiCollectionToken_
 
MonitorElementmeESDigi3D_
 
MonitorElementmeESDigiADC_ [3]
 
MonitorElementmeESDigiCorr_ [3]
 
MonitorElementmeESDigiMultiplicity_
 
std::string outputFile_
 
bool verbose_
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 

Detailed Description

Definition at line 27 of file EcalPreshowerNoiseDistrib.h.

Member Typedef Documentation

typedef std::map<uint32_t,float,std::less<uint32_t> > EcalPreshowerNoiseDistrib::MapType
private

Definition at line 29 of file EcalPreshowerNoiseDistrib.h.

Constructor & Destructor Documentation

EcalPreshowerNoiseDistrib::EcalPreshowerNoiseDistrib ( const edm::ParameterSet ps)

Constructor.

Definition at line 8 of file EcalPreshowerNoiseDistrib.cc.

References dbe_, edm::ParameterSet::getUntrackedParameter(), timingPdfMaker::histo, cuy::ii, meESDigi3D_, meESDigiADC_, meESDigiCorr_, meESDigiMultiplicity_, cppFunctionSkipper::operator, and verbose_.

8  :
9  ESdigiCollectionToken_( consumes<ESDigiCollection>( ps.getParameter<edm::InputTag>( "ESdigiCollection" ) ) )
10 {
11 
12  // verbosity switch
13  verbose_ = ps.getUntrackedParameter<bool>("verbose", false);
14 
15  dbe_ = 0;
16 
17  // get hold of back-end interface
18  dbe_ = edm::Service<DQMStore>().operator->();
19 
20  if ( dbe_ ) {
21  if ( verbose_ ) {
22  dbe_->setVerbose(1);
23  } else {
24  dbe_->setVerbose(0);
25  }
26  }
27 
28  if ( dbe_ ) {
29  if ( verbose_ ) dbe_->showDirStructure();
30  }
31 
32  // histos
34  for (int ii=0; ii<3; ii++ ) { meESDigiADC_[ii] = 0; }
35 
36  Char_t histo[200];
37  if ( dbe_ ) {
38  sprintf (histo, "multiplicity" ) ;
39  meESDigiMultiplicity_ = dbe_->book1D(histo, histo, 1000, 0., 137728);
40 
41  for ( int ii = 0; ii < 3 ; ii++ ) {
42  sprintf (histo, "esRefHistos%02d", ii) ;
43  meESDigiADC_[ii] = dbe_->book1D(histo, histo, 35, 983.5, 1018.5) ;
44  }
45 
46  for ( int ii = 0; ii < 3 ; ii++ ) {
47  sprintf (histo, "esRefHistosCorr%02d", ii) ;
48  meESDigiCorr_[ii] = dbe_->book2D(histo, histo, 35, 983.5, 1018.5, 35, 983.5, 1018.5) ;
49  }
50 
51  meESDigi3D_ = dbe_->book3D("meESDigi3D_", "meESDigi3D_", 35, 983.5, 1018.5, 35, 983.5, 1018.5, 35, 983.5, 1018.5) ;
52  }
53 }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
MonitorElement * book1D(const char *name, const char *title, int nchX, double lowX, double highX)
Book 1D histogram.
Definition: DQMStore.cc:872
MonitorElement * book3D(const char *name, const char *title, int nchX, double lowX, double highX, int nchY, double lowY, double highY, int nchZ, double lowZ, double highZ)
Book 3D histogram.
Definition: DQMStore.cc:1134
int ii
Definition: cuy.py:588
void setVerbose(unsigned level)
Definition: DQMStore.cc:548
edm::EDGetTokenT< ESDigiCollection > ESdigiCollectionToken_
void showDirStructure(void) const
Definition: DQMStore.cc:2961
MonitorElement * book2D(const char *name, const char *title, int nchX, double lowX, double highX, int nchY, double lowY, double highY)
Book 2D histogram.
Definition: DQMStore.cc:1000

Member Function Documentation

void EcalPreshowerNoiseDistrib::analyze ( const edm::Event e,
const edm::EventSetup c 
)
protectedvirtual

Analyze.

Implements edm::EDAnalyzer.

Definition at line 56 of file EcalPreshowerNoiseDistrib.cc.

References ecalMGPA::adc(), ESSample::adc(), ESdigiCollectionToken_, MonitorElement::Fill(), HcalObjRepresent::Fill(), edm::Event::getByToken(), edm::HandleBase::isValid(), ESDataFrame::MAXSAMPLES, meESDigi3D_, meESDigiADC_, meESDigiCorr_, meESDigiMultiplicity_, ecalTB2006H4_GenSimDigiReco_cfg::mySample, edm::Handle< T >::product(), compare_using_db::sample, and ESDataFrame::size().

56  {
57 
59 
60  e.getByToken( ESdigiCollectionToken_ , EcalDigiES );
61 
62  // retrun if no data
63  if( !EcalDigiES.isValid() ) return;
64 
65  // loop over Digis
66  const ESDigiCollection * preshowerDigi = EcalDigiES.product () ;
67 
68  std::vector<double> esADCCounts ;
69  esADCCounts.reserve(ESDataFrame::MAXSAMPLES);
70 
71  int nDigis = 0;
72 
73  for (unsigned int digis=0; digis<EcalDigiES->size(); ++digis) {
74  nDigis++;
75  ESDataFrame esdf=(*preshowerDigi)[digis];
76  int nrSamples=esdf.size();
77  for (int sample = 0 ; sample < nrSamples; ++sample) {
78  ESSample mySample = esdf[sample];
79  if (meESDigiADC_[sample]) { meESDigiADC_[sample] ->Fill(mySample.adc()); }
80  }
81 
82  // to study correlations
83  if(meESDigiCorr_[0]){ meESDigiCorr_[0]->Fill(esdf[0].adc(),esdf[1].adc()); }
84  if(meESDigiCorr_[1]){ meESDigiCorr_[1]->Fill(esdf[0].adc(),esdf[2].adc()); }
85  if(meESDigiCorr_[2]){ meESDigiCorr_[2]->Fill(esdf[1].adc(),esdf[2].adc()); }
86 
87  // reference histo: sample0, sample1, sample2
88  if ( meESDigi3D_ ) meESDigi3D_ -> Fill(esdf[0].adc(),esdf[1].adc(),esdf[2].adc());
89  }
90 
92 
93 }
int adc(sample_type sample)
get the ADC sample (12 bits)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:434
int size() const
Definition: ESDataFrame.h:23
void Fill(long long x)
void Fill(HcalDetId &id, double val, std::vector< TH2F > &depth)
static const int MAXSAMPLES
Definition: ESDataFrame.h:32
bool isValid() const
Definition: HandleBase.h:76
edm::EDGetTokenT< ESDigiCollection > ESdigiCollectionToken_
T const * product() const
Definition: Handle.h:81
int adc() const
get the ADC sample (singed 16 bits)
Definition: ESSample.h:18

Member Data Documentation

DQMStore* EcalPreshowerNoiseDistrib::dbe_
private

Definition at line 45 of file EcalPreshowerNoiseDistrib.h.

Referenced by EcalPreshowerNoiseDistrib().

edm::EDGetTokenT<ESDigiCollection> EcalPreshowerNoiseDistrib::ESdigiCollectionToken_
private

Definition at line 49 of file EcalPreshowerNoiseDistrib.h.

Referenced by analyze().

MonitorElement* EcalPreshowerNoiseDistrib::meESDigi3D_
private

Definition at line 53 of file EcalPreshowerNoiseDistrib.h.

Referenced by analyze(), and EcalPreshowerNoiseDistrib().

MonitorElement* EcalPreshowerNoiseDistrib::meESDigiADC_[3]
private

Definition at line 51 of file EcalPreshowerNoiseDistrib.h.

Referenced by analyze(), and EcalPreshowerNoiseDistrib().

MonitorElement* EcalPreshowerNoiseDistrib::meESDigiCorr_[3]
private

Definition at line 52 of file EcalPreshowerNoiseDistrib.h.

Referenced by analyze(), and EcalPreshowerNoiseDistrib().

MonitorElement* EcalPreshowerNoiseDistrib::meESDigiMultiplicity_
private

Definition at line 54 of file EcalPreshowerNoiseDistrib.h.

Referenced by analyze(), and EcalPreshowerNoiseDistrib().

std::string EcalPreshowerNoiseDistrib::outputFile_
private

Definition at line 47 of file EcalPreshowerNoiseDistrib.h.

bool EcalPreshowerNoiseDistrib::verbose_
private

Definition at line 43 of file EcalPreshowerNoiseDistrib.h.

Referenced by EcalPreshowerNoiseDistrib().