CMS 3D CMS Logo

L1GtTriggerMaskAlgoTrigConfigOnlineProd.cc
Go to the documentation of this file.
1 
15 // this class header
17 
18 // system include files
19 #include <vector>
20 
21 #include "boost/lexical_cast.hpp"
22 
23 // user include files
25 
26 // constructor
28  const edm::ParameterSet& parSet) :
30  m_partitionNumber(parSet.getParameter<int> ("PartitionNumber")) {
31 
32  // empty
33 
34 }
35 
36 // destructor
38 
39  // empty
40 
41 }
42 
43 // public methods
44 
45 std::shared_ptr<L1GtTriggerMask> L1GtTriggerMaskAlgoTrigConfigOnlineProd::newObject(
46  const std::string& objectKey) {
47 
48  // shared pointer for L1GtTriggerMask
49  auto pL1GtTriggerMask = std::make_shared<L1GtTriggerMask>();
50 
51  // l1GtTriggerMaskAlgoTrig: FINOR_ALGO_FK key in GT_PARTITION_FINOR_ALGO
52 
53  const std::string gtSchema = "CMS_GT";
54 
55  // SQL query:
56  // select * from CMS_GT.GT_PARTITION_FINOR_ALGO WHERE GT_PARTITION_FINOR_ALGO.ID = objectKey
57 
58  const std::vector<std::string>& columns = m_omdsReader.columnNames(
59  gtSchema, "GT_PARTITION_FINOR_ALGO");
60 
61  if (edm::isDebugEnabled()) {
62  for (std::vector<std::string>::const_iterator iter = columns.begin(); iter != columns.end(); iter++) {
63  LogTrace("L1GtTriggerMaskAlgoTrigConfigOnlineProd") << ( *iter ) << std::endl;
64 
65  }
66  }
67 
69  columns, gtSchema, "GT_PARTITION_FINOR_ALGO", "GT_PARTITION_FINOR_ALGO.ID",
70  m_omdsReader.singleAttribute(objectKey));
71 
72  // check if query was successful
73  if (results.queryFailed()) {
74  edm::LogError("L1-O2O") << "Problem with L1GtTriggerMaskAlgoTrigRcd key:" << objectKey;
75  return pL1GtTriggerMask;
76  }
77 
78  // mask for other partitions than m_partitionNumber set to 1 (algorithm masked)
79  int maskSize = columns.size() - 1; // table ID is also in columns
80  std::vector<bool> trigMaskBool(maskSize, false);
81  std::vector<unsigned int> trigMask(maskSize, 0);
82 
83  for (int i = 0; i < maskSize; i++) {
84  bool tMask = trigMaskBool[i];
85  results.fillVariable(columns[i + 1], tMask);
86  trigMask[i] = 0xFF & (~( static_cast<unsigned int> (tMask) << m_partitionNumber ));
87  }
88 
89  // fill the record
90  pL1GtTriggerMask->setGtTriggerMask(trigMask);
91 
92  if (edm::isDebugEnabled()) {
93  std::ostringstream myCoutStream;
94  pL1GtTriggerMask->print(myCoutStream);
95  LogTrace("L1GtTriggerMaskAlgoTrigConfigOnlineProd")
96  << "\nThe following L1GtTriggerMaskAlgoTrigRcd record was read from OMDS: \n"
97  << myCoutStream.str() << "\n" << std::endl;
98  }
99 
100  return pL1GtTriggerMask;
101 }
102 
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
L1GtTriggerMaskAlgoTrigConfigOnlineProd(const edm::ParameterSet &)
constructor
virtual std::shared_ptr< L1GtTriggerMask > newObject(const std::string &objectKey)
public methods
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