CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L1GtTriggerMaskVetoTechTrigConfigOnlineProd.cc
Go to the documentation of this file.
1 
15 // this class header
17 
18 // system include files
19 #include "boost/lexical_cast.hpp"
20 
21 // user include files
23 
24 // constructor
26  const edm::ParameterSet& parSet) :
28  m_partitionNumber(parSet.getParameter<int> ("PartitionNumber")) {
29 
30  // empty
31 
32 }
33 
34 // destructor
36 
37  // empty
38 
39 }
40 
41 // public methods
42 
43 boost::shared_ptr<L1GtTriggerMask> L1GtTriggerMaskVetoTechTrigConfigOnlineProd::newObject(
44  const std::string& objectKey) {
45 
46  // shared pointer for L1GtTriggerMask
47  boost::shared_ptr<L1GtTriggerMask> pL1GtTriggerMask = boost::shared_ptr<L1GtTriggerMask>(
48  new L1GtTriggerMask());
49 
50  // l1GtTriggerMaskVetoTechTrig: VETO_TT_FK key in GT_PARTITION_VETO_TT
51 
52  const std::string gtSchema = "CMS_GT";
53 
54  // SQL query:
55  //
56  // select * from CMS_GT.GT_PARTITION_VETO_TT WHERE GT_PARTITION_VETO_TT.ID = objectKey
57 
58  const std::vector<std::string>& columns = m_omdsReader.columnNames(
59  gtSchema, "GT_PARTITION_VETO_TT");
60 
61  if (edm::isDebugEnabled()) {
62  for (std::vector<std::string>::const_iterator iter = columns.begin(); iter != columns.end(); iter++) {
63  LogTrace("L1GtTriggerMaskVetoTechTrigConfigOnlineProd") << ( *iter ) << std::endl;
64 
65  }
66  }
67 
69  columns, gtSchema, "GT_PARTITION_VETO_TT", "GT_PARTITION_VETO_TT.ID",
70  m_omdsReader.singleAttribute(objectKey));
71 
72  // check if query was successful
73  if (results.queryFailed()) {
74  edm::LogError("L1-O2O") << "Problem with L1GtTriggerMaskVetoTechTrigRcd 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("L1GtTriggerMaskVetoTechTrigConfigOnlineProd")
96  << "\nThe following L1GtTriggerMaskVetoTechTrigRcd record was read from OMDS: \n"
97  << myCoutStream.str() << "\n" << std::endl;
98  }
99 
100  return pL1GtTriggerMask;
101 }
102 
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
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
L1GtTriggerMaskVetoTechTrigConfigOnlineProd(const edm::ParameterSet &)
constructor
std::vector< std::string > columnNames(const std::string &schemaName, const std::string &tableName) const
Definition: OMDSReader.cc:165