CMS 3D CMS Logo

CSCTFObjectKeysOnlineProd.cc
Go to the documentation of this file.
3 
5  : L1ObjectKeysOnlineProdBase( iConfig ),
6  m_enableConfiguration( iConfig.getParameter< bool >( "enableConfiguration" ) ),
7  m_enablePtLut( iConfig.getParameter< bool >( "enablePtLut" ) )
8 {}
9 
11 {
12  std::string csctfKey = pL1TriggerKey->subsystemKey( L1TriggerKey::kCSCTF ) ;
13 
14 
15 
16  if( !csctfKey.empty() )
17  {
19  {
20  //----------------------------------------------------------------------------
21  // register the main CSCTF key
22  pL1TriggerKey->add( "L1MuCSCTFConfigurationRcd",
23  "L1MuCSCTFConfiguration",
24  csctfKey ) ;
25  //----------------------------------------------------------------------------
26  }
27 
28  if( m_enablePtLut )
29  {
30  //----------------------------------------------------------------------------
31  // PT LUT
32  //
33  // while the sp configuration can change from sector to sector, the pt LUT file
34  //loaded in the CSCTF boards is the same for each SP => the same PTLUT_VERSION
35  // RETRIEVE THE VERSION FROM THE SP1 CONFIGURATION
36  //
37  // e.g., SELECT PTLUT_VERSION FROM CMS_CSC_TF.CSCTF_SP_CONF WHERE CSCTF_SP_CONF.SP_KEY = '1702100001'
38  // e.g., CSCTF key of the type day/month/year, e.g. 170210 = 17th February 2010
39  std::string sp1key = csctfKey + "0001";
40 
41  // query
42  l1t::OMDSReader::QueryResults objectKeyResults =
44  "PTLUT_VERSION",
45  "CMS_CSC_TF",
46  "CSCTF_SP_CONF",
47  "CSCTF_SP_CONF.SP_KEY",
48  m_omdsReader.singleAttribute( sp1key ) );
49 
50  // check if query was successful
51  if( objectKeyResults.queryFailed() || objectKeyResults.numberRows() != 1 )
52  {
53  edm::LogError( "L1-O2O" ) << "Problem with CSCTF key while retrieving "
54  << "the PTLUT_VERSION" ;
55  return ;
56  }
57 
58  // register the pt LUT key
59  std::string ptLutKey;
60  objectKeyResults.fillVariable( ptLutKey ) ;
61  pL1TriggerKey->add( "L1MuCSCPtLutRcd", "L1MuCSCPtLut", ptLutKey ) ;
62  //----------------------------------------------------------------------------
63  }
64  }
65 }
66 
CSCTFObjectKeysOnlineProd(const edm::ParameterSet &iConfig)
bool fillVariable(const std::string &columnName, T &outputVariable) const
Definition: OMDSReader.h:311
void fillObjectKeys(FillType) override
const QueryResults singleAttribute(const T &data) const
Definition: OMDSReader.h:295
std::unique_ptr< L1TriggerKey >::pointer FillType
return((rh^lh)&mask)
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