CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
QGLikelihoodSystematicsDBReader Class Reference
Inheritance diagram for QGLikelihoodSystematicsDBReader:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 QGLikelihoodSystematicsDBReader (const edm::ParameterSet &)
 
 ~QGLikelihoodSystematicsDBReader () 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 &&)=default
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
ESProxyIndex const * esGetTokenIndices (edm::Transition iTrans) const
 
std::vector< ESProxyIndex > const & esGetTokenIndicesVector (edm::Transition iTrans) const
 
std::vector< ESRecordIndex > const & esGetTokenRecordIndicesVector (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::array< std::vector< ModuleDescription const * > *, NumBranchTypes > &modulesAll, std::vector< ModuleProcessName > &modulesInPreviousProcesses, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void selectInputProcessBlocks (ProductRegistry const &productRegistry, ProcessBlockHelperBase const &processBlockHelperBase)
 
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 wantsInputProcessBlocks ()
 
static bool wantsProcessBlocks ()
 
static bool wantsStreamLuminosityBlocks ()
 
static bool wantsStreamRuns ()
 
- Protected Member Functions inherited from edm::EDConsumerBase
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
template<BranchType B = InEvent>
EDConsumerBaseAdaptor< B > consumes (edm::InputTag tag) noexcept
 
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<Transition Tr = Transition::Event>
constexpr auto esConsumes () noexcept
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
template<Transition Tr = Transition::Event>
auto esConsumes (ESInputTag tag) noexcept
 
template<Transition Tr = Transition::Event>
ESGetTokenGeneric esConsumes (eventsetup::EventSetupRecordKey const &iRecord, eventsetup::DataKey const &iKey)
 Used with EventSetupRecord::doGet. More...
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 

Detailed Description

Definition at line 13 of file QGLikelihoodSystematicsDBReader.cc.

Constructor & Destructor Documentation

◆ QGLikelihoodSystematicsDBReader()

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

Definition at line 27 of file QGLikelihoodSystematicsDBReader.cc.

27  {
28  mPayloadName = iConfig.getUntrackedParameter<std::string>("payloadName");
29  mPrintScreen = iConfig.getUntrackedParameter<bool>("printScreen");
30  mCreateTextFile = iConfig.getUntrackedParameter<bool>("createTextFile");
31 }

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

◆ ~QGLikelihoodSystematicsDBReader()

QGLikelihoodSystematicsDBReader::~QGLikelihoodSystematicsDBReader ( )
inlineoverride

Definition at line 16 of file QGLikelihoodSystematicsDBReader.cc.

16 {};

Member Function Documentation

◆ analyze()

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

Implements edm::EDAnalyzer.

Definition at line 33 of file QGLikelihoodSystematicsDBReader.cc.

33  {
34  edm::LogInfo("UserOutput") << "Inspecting QGLikelihood payload with label:" << mPayloadName << std::endl;
36  QGLikelihoodSystematicsRcd const& rcdhandle = iSetup.get<QGLikelihoodSystematicsRcd>();
37  rcdhandle.get(mPayloadName, QGLSysPar);
38 
39  std::vector<QGLikelihoodSystematicsObject::Entry> const& data = QGLSysPar->data;
40  edm::LogInfo("UserOutput") << "There are " << data.size()
41  << " entries (categories with parameters for smearing):" << std::endl;
42  for (auto idata = data.begin(); idata != data.end(); ++idata) {
43  int qgBin = idata->systCategory.QGIndex;
44  double etaMin = idata->systCategory.EtaMin;
45  double etaMax = idata->systCategory.EtaMax;
46  double rhoMin = idata->systCategory.RhoMin;
47  double rhoMax = idata->systCategory.RhoMax;
48  double ptMin = idata->systCategory.PtMin;
49  double ptMax = idata->systCategory.PtMax;
50  double a = idata->a;
51  double b = idata->b;
52  double lmin = idata->lmin;
53  double lmax = idata->lmax;
54 
55  char buff[1000];
56  sprintf(buff,
57  "qg=%1d, ptMin=%8.2f, ptMax=%8.2f, etaMin=%3.1f, etaMax=%3.1f, rhoMin=%6.2f, rhoMax=%6.2f, a=%7.3f, "
58  "b=%7.3f, lmin=%6.2f, lmax=%6.2f",
59  qgBin,
60  ptMin,
61  ptMax,
62  etaMin,
63  etaMax,
64  rhoMin,
65  rhoMax,
66  a,
67  b,
68  lmin,
69  lmax);
70  edm::LogVerbatim("UserOutput") << buff << std::endl;
71  }
72 }

References a, b, QGLikelihoodSystematicsObject::data, data, ALCARECOTkAlBeamHalo_cff::etaMax, ALCARECOTkAlBeamHalo_cff::etaMin, edm::eventsetup::EventSetupRecordImplementation< T >::get(), edm::EventSetup::get(), mPayloadName, AlignmentTrackSelector_cfi::ptMax, ptMin, HLT_FULL_cff::rhoMax, and electronConversionRejectionValidator::rhoMin.

◆ beginJob()

void QGLikelihoodSystematicsDBReader::beginJob ( void  )
inlineoverrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 19 of file QGLikelihoodSystematicsDBReader.cc.

19 {};

◆ endJob()

void QGLikelihoodSystematicsDBReader::endJob ( void  )
inlineoverrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 21 of file QGLikelihoodSystematicsDBReader.cc.

21 {};

Member Data Documentation

◆ mCreateTextFile

bool QGLikelihoodSystematicsDBReader::mCreateTextFile
private

Definition at line 24 of file QGLikelihoodSystematicsDBReader.cc.

Referenced by QGLikelihoodSystematicsDBReader().

◆ mPayloadName

std::string QGLikelihoodSystematicsDBReader::mPayloadName
private

Definition at line 21 of file QGLikelihoodSystematicsDBReader.cc.

Referenced by analyze(), and QGLikelihoodSystematicsDBReader().

◆ mPrintScreen

bool QGLikelihoodSystematicsDBReader::mPrintScreen
private

Definition at line 24 of file QGLikelihoodSystematicsDBReader.cc.

Referenced by QGLikelihoodSystematicsDBReader().

QGLikelihoodSystematicsRcd
Definition: QGLikelihoodSystematicsRcd.h:23
ALCARECOTkAlBeamHalo_cff.etaMin
etaMin
GeV.
Definition: ALCARECOTkAlBeamHalo_cff.py:32
ptMin
constexpr float ptMin
Definition: PhotonIDValueMapProducer.cc:155
edm::ParameterSet::getUntrackedParameter
T getUntrackedParameter(std::string const &, T const &) const
edm::LogInfo
Log< level::Info, false > LogInfo
Definition: MessageLogger.h:125
QGLikelihoodSystematicsDBReader::mPrintScreen
bool mPrintScreen
Definition: QGLikelihoodSystematicsDBReader.cc:24
edm::EventSetup::get
T get() const
Definition: EventSetup.h:87
AlignmentTrackSelector_cfi.ptMax
ptMax
Definition: AlignmentTrackSelector_cfi.py:12
edm::ESHandle
Definition: DTSurvey.h:22
b
double b
Definition: hdecay.h:118
QGLikelihoodSystematicsObject::data
std::vector< Entry > data
Definition: QGLikelihoodObject.h:44
QGLikelihoodSystematicsDBReader::mPayloadName
std::string mPayloadName
Definition: QGLikelihoodSystematicsDBReader.cc:21
a
double a
Definition: hdecay.h:119
HLT_FULL_cff.rhoMax
rhoMax
Definition: HLT_FULL_cff.py:15005
AlCaHLTBitMon_QueryRunRegistry.string
string string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
QGLikelihoodSystematicsDBReader::mCreateTextFile
bool mCreateTextFile
Definition: QGLikelihoodSystematicsDBReader.cc:24
edm::LogVerbatim
Log< level::Info, true > LogVerbatim
Definition: MessageLogger.h:128
ALCARECOTkAlBeamHalo_cff.etaMax
etaMax
Definition: ALCARECOTkAlBeamHalo_cff.py:33
data
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:79
edm::eventsetup::EventSetupRecordImplementation::get
PRODUCT const & get(ESGetToken< PRODUCT, T > const &iToken) const
Definition: EventSetupRecordImplementation.h:74
electronConversionRejectionValidator.rhoMin
rhoMin
Definition: electronConversionRejectionValidator.py:59