CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
BigEventsDebugger< T > Class Template Reference

#include <myTKAnalyses/BigEventsDebugger/src/BigEventsDebugger.cc>

Inheritance diagram for BigEventsDebugger< T >:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 BigEventsDebugger (const edm::ParameterSet &)
 
 ~BigEventsDebugger () override
 
- 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
 
 ~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
 
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
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Member Functions

void analyze (const edm::Event &, const edm::EventSetup &) override
 

Private Attributes

edm::EDGetTokenT< Tm_collectionToken
 
DigiCollectionProfiler< Tm_digiprofiler
 
bool m_folded
 
std::vector< TH1F * > m_hist
 
std::vector< TH2F * > m_hist2d
 
std::vector< TProfile * > m_hprof
 
std::vector< std::string > m_labels
 
bool m_singleevents
 
bool m_want1dHisto
 
bool m_want2dHisto
 
bool m_wantProfile
 

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 &)
 
- 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)
 

Detailed Description

template<class T>
class BigEventsDebugger< T >

Description: <one line="" class="" summary>="">

Implementation: <Notes on="" implementation>="">

Definition at line 57 of file BigEventsDebugger.cc.

Constructor & Destructor Documentation

template<class T >
BigEventsDebugger< T >::BigEventsDebugger ( const edm::ParameterSet iConfig)
explicit

Definition at line 95 of file BigEventsDebugger.cc.

References compare_using_db::dirname, edm::ParameterSet::getParameter(), diffTwoXMLs::label, BigEventsDebugger< T >::m_folded, BigEventsDebugger< T >::m_hist, BigEventsDebugger< T >::m_hist2d, BigEventsDebugger< T >::m_hprof, BigEventsDebugger< T >::m_labels, BigEventsDebugger< T >::m_singleevents, BigEventsDebugger< T >::m_want1dHisto, BigEventsDebugger< T >::m_want2dHisto, BigEventsDebugger< T >::m_wantProfile, TFileDirectory::make(), TFileService::mkdir(), pileupCalc::nbins, and AlCaHLTBitMon_QueryRunRegistry::string.

95  :
96  m_digiprofiler(iConfig),
97  m_collectionToken(consumes<T>(iConfig.getParameter<edm::InputTag>("collection"))),
98  m_singleevents(iConfig.getParameter<bool>("singleEvents")),
99  m_folded(iConfig.getUntrackedParameter<bool>("foldedStrips",false)),
100  m_want1dHisto(iConfig.getUntrackedParameter<bool>("want1dHisto",true)),
101  m_wantProfile(iConfig.getUntrackedParameter<bool>("wantProfile",true)),
102  m_want2dHisto(iConfig.getUntrackedParameter<bool>("want2dHisto",false))
103 
104 {
105  //now do what ever initialization is needed
106 
107  std::vector<edm::ParameterSet> selconfigs = iConfig.getParameter<std::vector<edm::ParameterSet> >("selections");
108 
109  for(std::vector<edm::ParameterSet>::const_iterator selconfig=selconfigs.begin();selconfig!=selconfigs.end();++selconfig) {
110  m_labels.push_back(selconfig->getParameter<std::string>("label"));
111  }
112 
113 
115 
116  if(!m_singleevents) {
117  char dirname[500];
118  sprintf(dirname,"Summary");
119  TFileDirectory subd = tfserv->mkdir(dirname);
120 
121  //book histos
122 
123  unsigned int nbins =768;
124  if(m_folded) nbins=256;
125 
126  for(std::vector<std::string>::const_iterator label=m_labels.begin(); label!=m_labels.end(); ++label) {
127  if(m_want1dHisto) {
128  std::string hname = *label + "hist";
129  std::string htitle = *label + " occupancy";
130  m_hist.push_back(subd.make<TH1F>(hname.c_str(),htitle.c_str(),nbins,-0.5,nbins-0.5));
131  }
132  if(m_wantProfile) {
133  std::string hname = *label + "prof";
134  std::string htitle = *label + " charge profile";
135  m_hprof.push_back(subd.make<TProfile>(hname.c_str(),htitle.c_str(),nbins,-0.5,nbins-0.5));
136  }
137  if(m_want2dHisto) {
138  std::string hname = *label + "hist2d";
139  std::string htitle = *label + " charge distribution";
140  m_hist2d.push_back(subd.make<TH2F>(hname.c_str(),htitle.c_str(),nbins,-0.5,nbins-0.5,257,-0.5,256.5));
141  }
142  }
143  }
144 }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
std::vector< TH1F * > m_hist
std::vector< TH2F * > m_hist2d
DigiCollectionProfiler< T > m_digiprofiler
std::vector< TProfile * > m_hprof
T * make(const Args &...args) const
make new ROOT object
edm::EDGetTokenT< T > m_collectionToken
TFileDirectory mkdir(const std::string &dir, const std::string &descr="")
create a new subdirectory
Definition: TFileService.h:69
std::vector< std::string > m_labels
template<class T >
BigEventsDebugger< T >::~BigEventsDebugger ( )
override

Definition at line 147 of file BigEventsDebugger.cc.

148 {
149 
150 
151  // do anything here that needs to be done at desctruction time
152  // (e.g. close files, deallocate resources etc.)
153 
154 }

Member Function Documentation

template<class T >
void BigEventsDebugger< T >::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 164 of file BigEventsDebugger.cc.

References compare_using_db::dirname, edm::EventID::event(), edm::Event::getByToken(), edm::EventBase::id(), diffTwoXMLs::label, BigEventsDebugger< T >::m_collectionToken, BigEventsDebugger< T >::m_digiprofiler, BigEventsDebugger< T >::m_folded, BigEventsDebugger< T >::m_hist, BigEventsDebugger< T >::m_hist2d, BigEventsDebugger< T >::m_hprof, BigEventsDebugger< T >::m_labels, BigEventsDebugger< T >::m_singleevents, BigEventsDebugger< T >::m_want1dHisto, BigEventsDebugger< T >::m_want2dHisto, BigEventsDebugger< T >::m_wantProfile, TFileService::mkdir(), pileupCalc::nbins, edm::Event::run(), and AlCaHLTBitMon_QueryRunRegistry::string.

165 {
166  using namespace edm;
167 
169 
170  // create a folder for each event
171 
172  if(m_singleevents) {
173 
174  m_hist.clear(); m_hprof.clear(); m_hist2d.clear();
175 
176  char dirname[500];
177  sprintf(dirname,"event_%u_%llu",iEvent.run(),iEvent.id().event());
178  TFileDirectory subd = tfserv->mkdir(dirname);
179 
180  //book histos
181 
182  unsigned int nbins =768;
183  if(m_folded) nbins=256;
184 
185  for(std::vector<std::string>::const_iterator label=m_labels.begin(); label!=m_labels.end(); ++label) {
186  if(m_want1dHisto) {
187  std::string hname = *label + "hist";
188  std::string htitle = *label + " occupancy";
189  m_hist.push_back(subd.make<TH1F>(hname.c_str(),htitle.c_str(),nbins,-0.5,nbins-0.5));
190  }
191  if(m_wantProfile) {
192  std::string hname = *label + "prof";
193  std::string htitle = *label + " charge profile";
194  m_hprof.push_back(subd.make<TProfile>(hname.c_str(),htitle.c_str(),nbins,-0.5,nbins-0.5));
195  }
196  if(m_want2dHisto) {
197  std::string hname = *label + "hist2d";
198  std::string htitle = *label + " charge distribution";
199  m_hist2d.push_back(subd.make<TH2F>(hname.c_str(),htitle.c_str(),nbins,-0.5,nbins-0.5,257,-0.5,256.5));
200  }
201  }
202 
203  }
204 
205  //analyze event
206 
207  Handle<T> digis;
208  iEvent.getByToken(m_collectionToken,digis);
210 
211 }
EventNumber_t event() const
Definition: EventID.h:41
std::vector< TH1F * > m_hist
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:508
std::vector< TH2F * > m_hist2d
DigiCollectionProfiler< T > m_digiprofiler
std::vector< TProfile * > m_hprof
RunNumber_t run() const
Definition: Event.h:99
edm::EDGetTokenT< T > m_collectionToken
TFileDirectory mkdir(const std::string &dir, const std::string &descr="")
create a new subdirectory
Definition: TFileService.h:69
edm::EventID id() const
Definition: EventBase.h:60
HLT enums.
std::vector< std::string > m_labels

Member Data Documentation

template<class T >
edm::EDGetTokenT<T> BigEventsDebugger< T >::m_collectionToken
private

Definition at line 69 of file BigEventsDebugger.cc.

Referenced by BigEventsDebugger< T >::analyze().

template<class T >
DigiCollectionProfiler<T> BigEventsDebugger< T >::m_digiprofiler
private

Definition at line 68 of file BigEventsDebugger.cc.

Referenced by BigEventsDebugger< T >::analyze().

template<class T >
bool BigEventsDebugger< T >::m_folded
private
template<class T >
std::vector<TH1F*> BigEventsDebugger< T >::m_hist
private
template<class T >
std::vector<TH2F*> BigEventsDebugger< T >::m_hist2d
private
template<class T >
std::vector<TProfile*> BigEventsDebugger< T >::m_hprof
private
template<class T >
std::vector<std::string> BigEventsDebugger< T >::m_labels
private
template<class T >
bool BigEventsDebugger< T >::m_singleevents
private
template<class T >
bool BigEventsDebugger< T >::m_want1dHisto
private
template<class T >
bool BigEventsDebugger< T >::m_want2dHisto
private
template<class T >
bool BigEventsDebugger< T >::m_wantProfile
private