CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
EcalTPInputAnalyzer Class Reference

#include <EcalTPInputAnalyzer.h>

Inheritance diagram for EcalTPInputAnalyzer:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

void analyze (const edm::Event &, const edm::EventSetup &) override
 
 EcalTPInputAnalyzer (const edm::ParameterSet &)
 
void endJob () override
 
 ~EcalTPInputAnalyzer () override
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
SerialTaskQueueglobalLuminosityBlocksQueue ()
 
SerialTaskQueueglobalRunsQueue ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
 ~EDAnalyzer () override
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
ESProxyIndex const * esGetTokenIndices (edm::Transition iTrans) const
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Attributes

std::string ebLabel_
 
TH1I * ecal_et_ [2]
 
TH1I * ecal_fgvb_ [2]
 
std::vector< std::string > ecal_parts_
 
TH1I * ecal_tt_ [2]
 
std::string eeLabel_
 
TH1I * histBar
 
TH1I * histEndc
 
TFile * histfile_
 
std::string producer_
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
static bool wantsGlobalLuminosityBlocks ()
 
static bool wantsGlobalRuns ()
 
static bool wantsStreamLuminosityBlocks ()
 
static bool wantsStreamRuns ()
 
- 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 ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes ()
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
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)
 

Detailed Description

Description: test of the input of EcalTrigPrimProducer

Definition at line 35 of file EcalTPInputAnalyzer.h.

Constructor & Destructor Documentation

EcalTPInputAnalyzer::EcalTPInputAnalyzer ( const edm::ParameterSet iConfig)
explicit

Definition at line 37 of file EcalTPInputAnalyzer.cc.

References edm::ParameterSet::getParameter(), and AlCaHLTBitMon_QueryRunRegistry::string.

39 {
40  histfile_ = new TFile("histos.root", "UPDATE");
41  histEndc = new TH1I("AdcE", "Adc-s for Endcap", 100, 0., 5000.);
42  histBar = new TH1I("AdcB", "Adc-s for Barrel", 100, 0., 5000.);
43  ecal_parts_.push_back("Barrel");
44  ecal_parts_.push_back("Endcap");
45 
46  // for (unsigned int i=0;i<2;++i) {
47  // ecal_et_[i]=new TH1I(ecal_parts_[i].c_str(),"Et",255,0,255);
48  // char title[30];
49  // sprintf(title,"%s_ttf",ecal_parts_[i].c_str());
50  // ecal_tt_[i]=new TH1I(title,"TTF",10,0,10);
51  // sprintf(title,"%s_fgvb",ecal_parts_[i].c_str());
52  // ecal_fgvb_[i]=new TH1I(title,"FGVB",10,0,10);
53  // }
54  producer_ = iConfig.getParameter<std::string>("Producer");
55  ebLabel_ = iConfig.getParameter<std::string>("EBLabel");
56  eeLabel_ = iConfig.getParameter<std::string>("EELabel");
57 }
T getParameter(std::string const &) const
std::vector< std::string > ecal_parts_
EcalTPInputAnalyzer::~EcalTPInputAnalyzer ( )
override

Definition at line 59 of file EcalTPInputAnalyzer.cc.

59  {
60 
61  // do anything here that needs to be done at desctruction time
62  // (e.g. close files, deallocate resources etc.)
63 
64  histfile_->Write();
65  histfile_->Close();
66 }

Member Function Documentation

void EcalTPInputAnalyzer::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
override

Definition at line 73 of file EcalTPInputAnalyzer.cc.

References EcalMGPASample::adc(), Reference_intrackfit_cff::barrel, makeMuonMisalignmentScenario::endcap, edm::Event::getByLabel(), mps_fire::i, edm::Handle< T >::product(), EcalDataFrame::size(), and edm::DataFrameContainer::size().

74  {
75  using namespace edm;
76  using namespace std;
77 
78  bool barrel = true;
81  if (!iEvent.getByLabel(producer_, ebLabel_, ebDigis)) {
82  barrel = false;
83  edm::LogWarning("EcalTPG")
84  << " Couldnt find Barrel dataframes with Producer:" << producer_
85  << " and label: " << ebLabel_;
86  }
87  bool endcap = true;
88  if (!iEvent.getByLabel(producer_, eeLabel_, eeDigis)) {
89  endcap = false;
90  edm::LogWarning("EcalTPG")
91  << " Couldnt find Endcap dataframes with Producer:" << producer_
92  << " and label: " << eeLabel_;
93  }
94  // barrel
95  if (barrel) {
96  const EBDigiCollection *ebdb = ebDigis.product();
97  for (unsigned int i = 0; i < ebDigis->size(); ++i) {
98  EBDataFrame ebdf = (*ebdb)[i];
99  int nrSamples = ebdf.size();
100  // unsigned int nrSamples=(ebDigis.product())[i].size();
101  for (int is = 0; is < nrSamples; ++is) {
102  // EcalMGPASample sam=((ebDigis.product())[i])[is];
103  EcalMGPASample sam = ebdf[is];
104  histBar->Fill(sam.adc());
105  }
106  }
107  }
108  // endcap
109  if (endcap) {
110  const EEDigiCollection *eedb = eeDigis.product();
111  for (unsigned int i = 0; i < eeDigis->size(); ++i) {
112  EEDataFrame eedf = (*eedb)[i];
113  int nrSamples = eedf.size();
114  for (int is = 0; is < nrSamples; ++is) {
115  EcalMGPASample sam = eedf[is];
116  histEndc->Fill(sam.adc());
117  }
118  }
119  }
120  // // Get input
121  // edm::Handle<EcalTrigPrimDigiCollection> tp;
122  // iEvent.getByLabel(label_,producer_,tp);
123  // for (unsigned int i=0;i<tp.product()->size();i++) {
124  // EcalTriggerPrimitiveDigi d=(*(tp.product()))[i];
125  // int subdet=d.id().subDet()-1;
126  // ecal_et_[subdet]->Fill(d.compressedEt());
127  // ecal_tt_[subdet]->Fill(d.ttFlag());
128  // ecal_fgvb_[subdet]->Fill(d.fineGrain());
129  // }
130 }
int size() const
Definition: EcalDataFrame.h:26
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:480
T const * product() const
Definition: Handle.h:74
HLT enums.
int adc() const
get the ADC sample (12 bits)
void EcalTPInputAnalyzer::endJob ( void  )
overridevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 132 of file EcalTPInputAnalyzer.cc.

132  {
133  histEndc->Write();
134  histBar->Write();
135 }

Member Data Documentation

std::string EcalTPInputAnalyzer::ebLabel_
private

Definition at line 52 of file EcalTPInputAnalyzer.h.

TH1I* EcalTPInputAnalyzer::ecal_et_[2]
private

Definition at line 46 of file EcalTPInputAnalyzer.h.

TH1I* EcalTPInputAnalyzer::ecal_fgvb_[2]
private

Definition at line 48 of file EcalTPInputAnalyzer.h.

std::vector<std::string> EcalTPInputAnalyzer::ecal_parts_
private

Definition at line 45 of file EcalTPInputAnalyzer.h.

TH1I* EcalTPInputAnalyzer::ecal_tt_[2]
private

Definition at line 47 of file EcalTPInputAnalyzer.h.

std::string EcalTPInputAnalyzer::eeLabel_
private

Definition at line 53 of file EcalTPInputAnalyzer.h.

TH1I * EcalTPInputAnalyzer::histBar
private

Definition at line 49 of file EcalTPInputAnalyzer.h.

TH1I* EcalTPInputAnalyzer::histEndc
private

Definition at line 49 of file EcalTPInputAnalyzer.h.

TFile* EcalTPInputAnalyzer::histfile_
private

Definition at line 50 of file EcalTPInputAnalyzer.h.

std::string EcalTPInputAnalyzer::producer_
private

Definition at line 54 of file EcalTPInputAnalyzer.h.