CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
QGLikelihoodSystematicsDBWriter.cc
Go to the documentation of this file.
1 // Author: Benedikt Hegner, Tom Cornelis
2 // Email: benedikt.hegner@cern.ch, tom.cornelis@cern.ch
3 
4 #include <vector>
5 #include <memory>
6 #include <string>
7 #include <fstream>
17 
19 public:
21  void beginJob() override;
22  void analyze(const edm::Event&, const edm::EventSetup&) override {}
23  void endJob() override {}
25 
26 private:
29 };
30 
31 // Constructor
33  fileName = pSet.getParameter<std::string>("src");
34  payloadTag = pSet.getParameter<std::string>("payload");
35 }
36 
37 // Begin Job
40  payload.data.clear();
41 
42  std::ifstream database;
43  database.open(edm::FileInPath(fileName.c_str()).fullPath().c_str(), std::ios::in);
44  if (!database.is_open()) {
45  edm::LogError("FileNotFound") << "Could not open file " << fileName << std::endl;
46  return;
47  }
49  while (std::getline(database, line)) {
50  float ptMin, ptMax, etaMin, etaMax, rhoMin, rhoMax, a_q, b_q, a_g, b_g, lmin, lmax;
51  char tag[1023], leadchar;
52  sscanf(line.c_str(), "%c", &leadchar);
53  if ((leadchar == '#') || (leadchar == '!'))
54  continue; //Skip those lines
55  sscanf(line.c_str(),
56  "%s %f %f %f %f %f %f %f %f %f %f %f %f",
57  &tag[0],
58  &ptMin,
59  &ptMax,
60  &rhoMin,
61  &rhoMax,
62  &etaMin,
63  &etaMax,
64  &a_q,
65  &b_q,
66  &a_g,
67  &b_g,
68  &lmin,
69  &lmax);
70 
72  category.RhoMin = rhoMin;
73  category.RhoMax = rhoMax;
74  category.PtMin = ptMin;
75  category.PtMax = ptMax;
76  category.EtaMin = etaMin;
77  category.EtaMax = etaMax;
78  category.QGIndex = 0;
79  category.VarIndex = -1;
80 
81  //quark entry
83  quarkEntry.systCategory = category;
84  quarkEntry.a = a_q;
85  quarkEntry.b = b_q;
86  quarkEntry.lmin = lmin;
87  quarkEntry.lmax = lmax;
88 
89  //gluon entry
90  QGLikelihoodSystematicsObject::Entry gluonEntry = quarkEntry;
91  gluonEntry.systCategory.QGIndex = 1;
92  gluonEntry.a = a_g;
93  gluonEntry.b = b_g;
94 
95  payload.data.push_back(quarkEntry);
96  payload.data.push_back(gluonEntry);
97  }
98  database.close();
99 
100  // Now write it into the DB
101  edm::LogInfo("UserOutput") << "Opening PoolDBOutputService" << std::endl;
103  if (s.isAvailable()) {
104  edm::LogInfo("UserOutput") << "Setting up payload with " << payload.data.size() << " entries and tag " << payloadTag
105  << std::endl;
106  s->writeOneIOV(payload, s->beginOfTime(), payloadTag);
107  }
108  edm::LogInfo("UserOutput") << "Wrote in CondDB QGLikelihoodSystematic payload label: " << payloadTag << std::endl;
109 }
110 
static const char category[]
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
constexpr float ptMin
tuple etaMin
Definition: Puppi_cff.py:45
Log< level::Error, false > LogError
void analyze(const edm::Event &, const edm::EventSetup &) override
QGLikelihoodSystematicsDBWriter(const edm::ParameterSet &)
bool isAvailable() const
Definition: Service.h:40
Hash writeOneIOV(const T &payload, Time_t time, const std::string &recordName)
Category structure: ranges associated with QGLikelihood histograms.
Log< level::Info, false > LogInfo
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
QGLikelihoodSystematicsObject containing the parameters for the systematic smearing.
tuple etaMax
Definition: Puppi_cff.py:46