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
QGLikelihoodSystematicsDBReader Class Reference
Inheritance diagram for QGLikelihoodSystematicsDBReader:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 QGLikelihoodSystematicsDBReader (const edm::ParameterSet &)
 
 ~QGLikelihoodSystematicsDBReader ()
 
- 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 QGLikelihoodSystematicsDBReader.cc.

Constructor & Destructor Documentation

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

Definition at line 16 of file QGLikelihoodSystematicsDBReader.cc.

16 {};

Member Function Documentation

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

Implements edm::EDAnalyzer.

Definition at line 35 of file QGLikelihoodSystematicsDBReader.cc.

References a, b, 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  QGLikelihoodSystematicsRcd const& rcdhandle = iSetup.get<QGLikelihoodSystematicsRcd>();
39  rcdhandle.get(mPayloadName, QGLSysPar);
40 
41  std::vector<QGLikelihoodSystematicsObject::Entry> const& data = QGLSysPar->data;
42  edm::LogInfo("UserOutput") << "There are " << data.size() << " entries (categories with parameters for smearing):" << std::endl;
43  for(auto idata = data.begin(); idata != data.end(); ++idata){
44  int qgBin = idata->systCategory.QGIndex;
45  double etaMin = idata->systCategory.EtaMin;
46  double etaMax = idata->systCategory.EtaMax;
47  double rhoMin = idata->systCategory.RhoMin;
48  double rhoMax = idata->systCategory.RhoMax;
49  double ptMin = idata->systCategory.PtMin;
50  double ptMax = idata->systCategory.PtMax;
51  double a = idata->a;
52  double b = idata->b;
53  double lmin = idata->lmin;
54  double lmax = idata->lmax;
55 
56  char buff[1000];
57  sprintf(buff, "qg=%1d, ptMin=%8.2f, ptMax=%8.2f, etaMin=%3.1f, etaMax=%3.1f, rhoMin=%6.2f, rhoMax=%6.2f, a=%7.3f, b=%7.3f, lmin=%6.2f, lmax=%6.2f", qgBin, ptMin, ptMax, etaMin, etaMax, rhoMin, rhoMax, a, b, lmin, lmax);
58  edm::LogVerbatim("UserOutput") << buff << std::endl;
59  }
60 }
void get(HolderT &iHolder) const
const T & get() const
Definition: EventSetup.h:55
double b
Definition: hdecay.h:120
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82
double a
Definition: hdecay.h:121
virtual void QGLikelihoodSystematicsDBReader::beginJob ( void  )
inlineoverrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 19 of file QGLikelihoodSystematicsDBReader.cc.

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

Reimplemented from edm::EDAnalyzer.

Definition at line 21 of file QGLikelihoodSystematicsDBReader.cc.

21 {};

Member Data Documentation

bool QGLikelihoodSystematicsDBReader::mCreateTextFile
private

Definition at line 24 of file QGLikelihoodSystematicsDBReader.cc.

Referenced by QGLikelihoodSystematicsDBReader().

std::string QGLikelihoodSystematicsDBReader::mPayloadName
private

Definition at line 21 of file QGLikelihoodSystematicsDBReader.cc.

Referenced by analyze(), and QGLikelihoodSystematicsDBReader().

bool QGLikelihoodSystematicsDBReader::mPrintScreen
private

Definition at line 24 of file QGLikelihoodSystematicsDBReader.cc.

Referenced by QGLikelihoodSystematicsDBReader().