CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 boost::shared_ptr<L1GtTriggerMask> L1GtTriggerMaskTechTrigConfigOnlineProd::newObject(
45  const std::string& objectKey) {
46 
47  // shared pointer for L1GtTriggerMask
48  boost::shared_ptr<L1GtTriggerMask> pL1GtTriggerMask = boost::shared_ptr<L1GtTriggerMask>(
49  new L1GtTriggerMask());
50 
51  // l1GtTriggerMaskTechTrig: FINOR_TT_FK key in GT_PARTITION_FINOR_TT
52 
53  const std::string gtSchema = "CMS_GT";
54 
55  // SQL query:
56  //
57  // select * from CMS_GT.GT_PARTITION_FINOR_TT WHERE GT_PARTITION_FINOR_TT.ID = objectKey
58 
59  const std::vector<std::string>& columns = m_omdsReader.columnNames(
60  gtSchema, "GT_PARTITION_FINOR_TT");
61 
62  if (edm::isDebugEnabled()) {
63  for (std::vector<std::string>::const_iterator iter = columns.begin(); iter != columns.end(); iter++) {
64  LogTrace("L1GtTriggerMaskTechTrigConfigOnlineProd") << ( *iter ) << std::endl;
65 
66  }
67  }
68 
70  columns, gtSchema, "GT_PARTITION_FINOR_TT", "GT_PARTITION_FINOR_TT.ID",
71  m_omdsReader.singleAttribute(objectKey));
72 
73  // check if query was successful
74  if (results.queryFailed()) {
75  edm::LogError("L1-O2O") << "Problem with L1GtTriggerMaskTechTrigRcd key:" << objectKey;
76  return pL1GtTriggerMask;
77  }
78 
79  // mask for other partitions than m_partitionNumber set to 1 (algorithm masked)
80  int maskSize = columns.size() - 1; // table ID is also in columns
81  std::vector<bool> trigMaskBool(maskSize, false);
82  std::vector<unsigned int> trigMask(maskSize, 0);
83 
84  for (int i = 0; i < maskSize; i++) {
85  bool tMask = trigMaskBool[i];
86  results.fillVariable(columns[i + 1], tMask);
87  trigMask[i] = 0xFF & (~( static_cast<unsigned int> (tMask) << m_partitionNumber ));
88  }
89 
90  // fill the record
91  pL1GtTriggerMask->setGtTriggerMask(trigMask);
92 
93  if (edm::isDebugEnabled()) {
94  std::ostringstream myCoutStream;
95  pL1GtTriggerMask->print(myCoutStream);
96  LogTrace("L1GtTriggerMaskTechTrigConfigOnlineProd")
97  << "\nThe following L1GtTriggerMaskTechTrigRcd record was read from OMDS: \n"
98  << myCoutStream.str() << "\n" << std::endl;
99  }
100 
101  return pL1GtTriggerMask;
102 }
103 
bool isDebugEnabled()
int i
Definition: DBlmapReader.cc:9
bool fillVariable(const std::string &columnName, T &outputVariable) const
Definition: OMDSReader.h:311
const QueryResults singleAttribute(const T &data) const
Definition: OMDSReader.h:295
virtual boost::shared_ptr< L1GtTriggerMask > newObject(const std::string &objectKey)
public methods
L1GtTriggerMaskTechTrigConfigOnlineProd(const edm::ParameterSet &)
constructor
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="") const
Definition: OMDSReader.cc:87
#define LogTrace(id)
#define DEFINE_FWK_EVENTSETUP_MODULE(type)
Definition: ModuleFactory.h:60
std::vector< std::string > columnNames(const std::string &schemaName, const std::string &tableName) const
Definition: OMDSReader.cc:165