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 Member Functions | Private Attributes
QGLikelihoodDBReader Class Reference
Inheritance diagram for QGLikelihoodDBReader:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 QGLikelihoodDBReader (const edm::ParameterSet &)
 
 ~QGLikelihoodDBReader ()
 
- 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
std::vector< ConsumesInfoconsumesInfo () const
 
 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
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

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

Private Attributes

bool mCreateTextFile
 
std::string mPayloadName
 
bool mPrintScreen
 

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

Definition at line 13 of file QGLikelihoodDBReader.cc.

Constructor & Destructor Documentation

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

Definition at line 28 of file QGLikelihoodDBReader.cc.

References edm::ParameterSet::getUntrackedParameter(), mCreateTextFile, mPayloadName, mPrintScreen, and AlCaHLTBitMon_QueryRunRegistry::string.

28  {
29  mPayloadName = iConfig.getUntrackedParameter<std::string>("payloadName");
30  mPrintScreen = iConfig.getUntrackedParameter<bool>("printScreen");
31  mCreateTextFile = iConfig.getUntrackedParameter<bool>("createTextFile");
32 }
T getUntrackedParameter(std::string const &, T const &) const
QGLikelihoodDBReader::~QGLikelihoodDBReader ( )
inline

Definition at line 16 of file QGLikelihoodDBReader.cc.

16 {};

Member Function Documentation

void QGLikelihoodDBReader::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivatevirtual

Implements edm::EDAnalyzer.

Definition at line 35 of file QGLikelihoodDBReader.cc.

References data, HLT_25ns14e33_v1_cff::etaMax, HLT_25ns14e33_v1_cff::etaMin, edm::EventSetup::get(), edm::eventsetup::EventSetupRecord::get(), mPayloadName, PtMinSelector_cfg::ptMin, and HLT_25ns14e33_v1_cff::rhoMax.

35  {
36  edm::LogInfo("UserOutput") << "Inspecting QGLikelihood payload with label:" << mPayloadName << std::endl;
38  QGLikelihoodRcd const& rcdhandle = iSetup.get<QGLikelihoodRcd>();
39  rcdhandle.get(mPayloadName, QGLParamsColl);
40 
41  edm::LogInfo("UserOutput") << "Ranges in which the QGTagger could be applied:"
42  << " pt: " << QGLParamsColl->qgValidRange.PtMin << " --> " << QGLParamsColl->qgValidRange.PtMax
43  << ", eta: " << QGLParamsColl->qgValidRange.EtaMin << " --> " << QGLParamsColl->qgValidRange.EtaMax
44  << ", rho: " << QGLParamsColl->qgValidRange.RhoMin << " --> " << QGLParamsColl->qgValidRange.RhoMax << std::endl;
45 
46  std::vector<QGLikelihoodObject::Entry> const& data = QGLParamsColl->data;
47  edm::LogInfo("UserOutput") << "There are " << data.size() << " entries (categories with associated PDF):" << std::endl;
48  for(auto idata = data.begin(); idata != data.end(); ++idata){
49  int varIndex = idata->category.VarIndex;
50  int qgBin = idata->category.QGIndex;
51  double etaMin = idata->category.EtaMin;
52  double etaMax = idata->category.EtaMax;
53  double rhoMin = idata->category.RhoMin;
54  double rhoMax = idata->category.RhoMax;
55  double ptMin = idata->category.PtMin;
56  double ptMax = idata->category.PtMax;
57 
58  char buff[1000];
59  sprintf(buff, "var=%1d, qg=%1d, ptMin=%8.2f, ptMax=%8.2f, etaMin=%3.1f, etaMax=%3.1f, rhoMin=%6.2f, rhoMax=%6.2f", varIndex, qgBin, ptMin, ptMax, etaMin, etaMax, rhoMin, rhoMax);
60  edm::LogVerbatim("UserOutput") << buff << std::endl;
61  }
62 }
void get(HolderT &iHolder) const
const T & get() const
Definition: EventSetup.h:55
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82
virtual void QGLikelihoodDBReader::beginJob ( void  )
inlineoverrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 19 of file QGLikelihoodDBReader.cc.

19 {};
virtual void QGLikelihoodDBReader::endJob ( void  )
inlineoverrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 21 of file QGLikelihoodDBReader.cc.

21 {};

Member Data Documentation

bool QGLikelihoodDBReader::mCreateTextFile
private

Definition at line 24 of file QGLikelihoodDBReader.cc.

Referenced by QGLikelihoodDBReader().

std::string QGLikelihoodDBReader::mPayloadName
private

Definition at line 21 of file QGLikelihoodDBReader.cc.

Referenced by analyze(), and QGLikelihoodDBReader().

bool QGLikelihoodDBReader::mPrintScreen
private

Definition at line 24 of file QGLikelihoodDBReader.cc.

Referenced by QGLikelihoodDBReader().