CMS 3D CMS Logo

L1GtTriggerMaskTechTrigConfigOnlineProd.cc
Go to the documentation of this file.
1 
15 // this class header
17 
18 // system include files
19 #include <vector>
20 
21 // user include files
23 
24 // constructor
27  m_partitionNumber(parSet.getParameter<int>("PartitionNumber")) {
28  // empty
29 }
30 
31 // destructor
33  // empty
34 }
35 
36 // public methods
37 
38 std::unique_ptr<L1GtTriggerMask> L1GtTriggerMaskTechTrigConfigOnlineProd::newObject(const std::string& objectKey) {
39  auto pL1GtTriggerMask = std::make_unique<L1GtTriggerMask>();
40 
41  // l1GtTriggerMaskTechTrig: FINOR_TT_FK key in GT_PARTITION_FINOR_TT
42 
43  const std::string gtSchema = "CMS_GT";
44 
45  // SQL query:
46  //
47  // select * from CMS_GT.GT_PARTITION_FINOR_TT WHERE GT_PARTITION_FINOR_TT.ID = objectKey
48 
49  const std::vector<std::string>& columns = m_omdsReader.columnNames(gtSchema, "GT_PARTITION_FINOR_TT");
50 
51  if (edm::isDebugEnabled()) {
52  for (std::vector<std::string>::const_iterator iter = columns.begin(); iter != columns.end(); iter++) {
53  LogTrace("L1GtTriggerMaskTechTrigConfigOnlineProd") << (*iter) << std::endl;
54  }
55  }
56 
58  columns, gtSchema, "GT_PARTITION_FINOR_TT", "GT_PARTITION_FINOR_TT.ID", m_omdsReader.singleAttribute(objectKey));
59 
60  // check if query was successful
61  if (results.queryFailed()) {
62  edm::LogError("L1-O2O") << "Problem with L1GtTriggerMaskTechTrigRcd key:" << objectKey;
63  return pL1GtTriggerMask;
64  }
65 
66  // mask for other partitions than m_partitionNumber set to 1 (algorithm masked)
67  int maskSize = columns.size() - 1; // table ID is also in columns
68  std::vector<bool> trigMaskBool(maskSize, false);
69  std::vector<unsigned int> trigMask(maskSize, 0);
70 
71  for (int i = 0; i < maskSize; i++) {
72  bool tMask = trigMaskBool[i];
73  results.fillVariable(columns[i + 1], tMask);
74  trigMask[i] = 0xFF & (~(static_cast<unsigned int>(tMask) << m_partitionNumber));
75  }
76 
77  // fill the record
78  pL1GtTriggerMask->setGtTriggerMask(trigMask);
79 
80  if (edm::isDebugEnabled()) {
81  std::ostringstream myCoutStream;
82  pL1GtTriggerMask->print(myCoutStream);
83  LogTrace("L1GtTriggerMaskTechTrigConfigOnlineProd")
84  << "\nThe following L1GtTriggerMaskTechTrigRcd record was read from OMDS: \n"
85  << myCoutStream.str() << "\n"
86  << std::endl;
87  }
88 
89  return pL1GtTriggerMask;
90 }
91 
bool isDebugEnabled()
const QueryResults singleAttribute(const T &data) const
Definition: OMDSReader.h:259
Log< level::Error, false > LogError
#define LogTrace(id)
L1GtTriggerMaskTechTrigConfigOnlineProd(const edm::ParameterSet &)
constructor
std::vector< std::string > columnNames(const std::string &schemaName, const std::string &tableName)
Definition: OMDSReader.cc:138
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
#define DEFINE_FWK_EVENTSETUP_MODULE(type)
Definition: ModuleFactory.h:61
results
Definition: mysort.py:8
std::unique_ptr< L1GtTriggerMask > newObject(const std::string &objectKey) override
public methods