CMS 3D CMS Logo

L1HfRingEtScaleOnlineProd.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: L1HfRingEtScaleOnlineProd
4 // Class: L1HfRingEtScaleOnlineProd
5 //
13 //
14 // Original Author: Werner Man-Li Sun
15 // Created: Tue Sep 16 22:43:22 CEST 2008
16 //
17 //
18 
19 // system include files
20 
21 // user include files
23 
26 
27 //
28 // class declaration
29 //
30 
31 class L1HfRingEtScaleOnlineProd : public L1ConfigOnlineProdBase<L1HfRingEtScaleRcd, L1CaloEtScale> {
32 public:
34  ~L1HfRingEtScaleOnlineProd() override;
35 
36  std::unique_ptr<L1CaloEtScale> newObject(const std::string& objectKey) override;
37 
38 private:
39  // ----------member data ---------------------------
40 };
41 
42 //
43 // constants, enums and typedefs
44 //
45 
46 //
47 // static data member definitions
48 //
49 
50 //
51 // constructors and destructor
52 //
55  //the following line is needed to tell the framework what
56  // data is being produced
57 
58  //now do what ever other initialization is needed
59 }
60 
62  // do anything here that needs to be done at desctruction time
63  // (e.g. close files, deallocate resources etc.)
64 }
65 
66 std::unique_ptr<L1CaloEtScale> L1HfRingEtScaleOnlineProd::newObject(const std::string& objectKey) {
67  // get scales keys
68  l1t::OMDSReader::QueryResults scalesKeyResults = m_omdsReader.basicQuery("GCT_SCALES_KEY",
69  "CMS_GCT",
70  "GCT_PHYS_PARAMS",
71  "GCT_PHYS_PARAMS.CONFIG_KEY",
72  m_omdsReader.singleAttribute(objectKey));
73 
74  std::string scalesKey;
75 
76  if (scalesKeyResults.queryFailed()) {
77  edm::LogError("L1-O2O") << "Problem with key for L1JetEtScaleRcd : GCT scales key query failed ";
78  } else if (scalesKeyResults.numberRows() != 1) {
79  edm::LogError("L1-O2O") << "Problem with key for L1JetEtScaleRcd : " << (scalesKeyResults.numberRows())
80  << " rows were returned when getting GCT scales key";
81  } else {
82  scalesKeyResults.fillVariable(scalesKey);
83  }
84 
85  // get ring scale key
86  l1t::OMDSReader::QueryResults hfRingScaleKeyResults =
87  m_omdsReader.basicQuery("SC_HF_ET_SUM_FK", "CMS_GT", "L1T_SCALES", "L1T_SCALES.ID", scalesKeyResults);
88 
89  std::string hfRingScaleKey;
90 
91  if (hfRingScaleKeyResults.queryFailed()) {
92  edm::LogError("L1-O2O") << "Problem with key for L1HfRingEtScaleRcd : HF ring Et scale key query failed ";
93  } else if (hfRingScaleKeyResults.numberRows() != 1) {
94  edm::LogError("L1-O2O") << "Problem with key for L1HfRingEtScaleRcd : " << (hfRingScaleKeyResults.numberRows())
95  << " rows were returned when getting HF ring Et scale key";
96  } else {
97  hfRingScaleKeyResults.fillVariable(hfRingScaleKey);
98  }
99 
100  // get thresholds
101  std::vector<std::string> queryStrings;
102  queryStrings.push_back("E_GEV_BIN_LOW_0");
103  queryStrings.push_back("E_GEV_BIN_LOW_1");
104  queryStrings.push_back("E_GEV_BIN_LOW_2");
105  queryStrings.push_back("E_GEV_BIN_LOW_3");
106  queryStrings.push_back("E_GEV_BIN_LOW_4");
107  queryStrings.push_back("E_GEV_BIN_LOW_5");
108  queryStrings.push_back("E_GEV_BIN_LOW_6");
109  queryStrings.push_back("E_GEV_BIN_LOW_7");
110 
112  queryStrings, "CMS_GT", "L1T_SCALE_HF_ET_SUM", "L1T_SCALE_HF_ET_SUM.ID", hfRingScaleKeyResults);
113 
114  std::vector<double> thresholds;
115 
116  if (scaleResults.queryFailed()) {
117  edm::LogError("L1-O2O") << "Problem with L1HfRingEtScale key : scale query failed.";
118  } else if (scaleResults.numberRows() != 1) {
119  edm::LogError("L1-O2O") << "Problem with L1HfRingEtScale key : scale query failed.";
120  } else {
121  for (std::vector<std::string>::iterator thresh = queryStrings.begin(); thresh != queryStrings.end(); ++thresh) {
122  float tempScale = 0.;
123  scaleResults.fillVariable(*thresh, tempScale);
124  thresholds.push_back(tempScale);
125  }
126  }
127 
128  // get region LSB
129  double rgnEtLsb = 0.;
130 
131  l1t::OMDSReader::QueryResults lsbResults = m_omdsReader.basicQuery("GCT_RGN_ET_LSB",
132  "CMS_GCT",
133  "GCT_PHYS_PARAMS",
134  "GCT_PHYS_PARAMS.CONFIG_KEY",
135  m_omdsReader.singleAttribute(objectKey));
136 
137  if (lsbResults.queryFailed()) {
138  edm::LogError("L1-O2O") << "Problem with L1JetEtScale key.";
139  } else {
140  lsbResults.fillVariable("GCT_RGN_ET_LSB", rgnEtLsb);
141  }
142 
143  //~~~~~~~~~ Instantiate new L1HfRingEtScale object. ~~~~~~~~~
144  return std::make_unique<L1CaloEtScale>(0xff, 0x7, rgnEtLsb, thresholds);
145 }
146 
147 // ------------ method called to produce the data ------------
148 
149 //define this as a plug-in
L1HfRingEtScaleOnlineProd(const edm::ParameterSet &)
const QueryResults singleAttribute(const T &data) const
Definition: OMDSReader.h:259
Log< level::Error, false > LogError
const QueryResults basicQuery(const std::vector< std::string > &columnNames, const std::string &schemaName, const std::string &tableName, const std::string &conditionLHS="", const QueryResults conditionRHS=QueryResults(), const std::string &conditionRHSName="")
Definition: OMDSReader.cc:75
bool fillVariable(const std::string &columnName, T &outputVariable) const
Definition: OMDSReader.h:274
#define DEFINE_FWK_EVENTSETUP_MODULE(type)
Definition: ModuleFactory.h:61
std::unique_ptr< L1CaloEtScale > newObject(const std::string &objectKey) override