CMS 3D CMS Logo

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 () 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 Member Functions

void analyze (const edm::Event &, const edm::EventSetup &) override
 
void beginJob () override
 
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 &)
 
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

Definition at line 13 of file QGLikelihoodDBReader.cc.

Constructor & Destructor Documentation

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

Definition at line 16 of file QGLikelihoodDBReader.cc.

16 {};

Member Function Documentation

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

Definition at line 35 of file QGLikelihoodDBReader.cc.

References QGLikelihoodObject::data, data, DEFINE_FWK_MODULE, QGLikelihoodCategory::EtaMax, ALCARECOTkAlBeamHalo_cff::etaMax, QGLikelihoodCategory::EtaMin, ALCARECOTkAlBeamHalo_cff::etaMin, edm::EventSetup::get(), edm::eventsetup::EventSetupRecordImplementation< T >::get(), mPayloadName, QGLikelihoodCategory::PtMax, AlignmentTrackSelector_cfi::ptMax, QGLikelihoodCategory::PtMin, ptMin, QGLikelihoodObject::qgValidRange, QGLikelihoodCategory::RhoMax, egammaForCoreTracking_cff::rhoMax, QGLikelihoodCategory::RhoMin, and electronConversionRejectionValidator::rhoMin.

Referenced by beginJob().

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 }
QGLikelihoodCategory qgValidRange
PRODUCT const & get(ESGetToken< PRODUCT, T > const &iToken) const
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82
std::vector< Entry > data
T get() const
Definition: EventSetup.h:71
void QGLikelihoodDBReader::beginJob ( void  )
inlineoverrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 19 of file QGLikelihoodDBReader.cc.

References analyze().

19 {};
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().