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