CMS 3D CMS Logo

L1MuCSCPtLutConfigOnlineProd.cc
Go to the documentation of this file.
2 
3 std::shared_ptr< L1MuCSCPtLut >
5 {
6 
7  edm::LogInfo( "L1-O2O: L1MuCSCPtLutConfigOnlineProd" ) << "Producing "
8  << "L1MuCSCPtLut "
9  << "with key PTLUT_VERSION="
10  << objectKey;
11 
12  // read the Pt_LUT: it is CLOB with 2^21 different values
13  //SELECT PT_LUT FROM CMS_CSC_TF.CSCTF_PTLUS WHERE CSCTF_PTLUS.PTLUT_VERSION = objectKey
15  "PT_LUT",
16  "CMS_CSC_TF",
17  "CSCTF_PTLUTS",
18  "CSCTF_PTLUTS.PTLUT_VERSION",
19  m_omdsReader.singleAttribute(objectKey)
20  ) ;
21 
22  // check if query was successful
23  if( results.queryFailed() )
24  {
25  edm::LogError( "L1-O2O" ) << "Problem with L1MuCSCPtLutParameters key" ;
26  // return empty object
27  return std::shared_ptr< L1MuCSCPtLut >() ;
28  }
29 
30 
31  std::string ptlut;
32  results.fillVariable( ptlut ) ;
33 
34  // if uncommented it will generate a huge output...
35  //edm::LogInfo( "L1-O2O: L1MuCSCPtLutConfigOnlineProd" ) << "PtLUT is "
36  // << "ptlut";
37 
38  edm::LogInfo( "L1-O2O: L1MuCSCPtLutConfigOnlineProd" ) << "Returning L1MuCSCPtLut";
39 
40  std::shared_ptr< L1MuCSCPtLut > CSCTFPtLut = std::make_shared< L1MuCSCPtLut >();
41  CSCTFPtLut->readFromDBS(ptlut);
42 
43  return CSCTFPtLut;
44 }
45 
bool fillVariable(const std::string &columnName, T &outputVariable) const
Definition: OMDSReader.h:311
const QueryResults singleAttribute(const T &data) const
Definition: OMDSReader.h:295
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 DEFINE_FWK_EVENTSETUP_MODULE(type)
Definition: ModuleFactory.h:60
std::shared_ptr< L1MuCSCPtLut > newObject(const std::string &objectKey) override