CMS 3D CMS Logo

DTT0FillDefaultFromDB.cc
Go to the documentation of this file.
1 /*
2  * See header file for a description of this class.
3  */
4 
10 
14 
15 #include <string>
16 
17 using namespace std;
18 using namespace edm;
19 
20 namespace dtCalibration {
21 
22 DTT0FillDefaultFromDB::DTT0FillDefaultFromDB(const ParameterSet& pset):
23  dbLabelRef_( pset.getParameter<string>("dbLabelRef") ) {
24 }
25 
27 }
28 
30  // Get t0 record from DB
31  ESHandle<DTT0> t0H;
32  setup.get<DTT0Rcd>().get(t0H);
33  t0Map_ = &*t0H;
34  LogVerbatim("Calibration") << "[DTT0FillDefaultFromDB] T0 version: " << t0H->version();
35 
36  // Get reference t0 DB
37  ESHandle<DTT0> t0RefH;
38  setup.get<DTT0Rcd>().get(dbLabelRef_,t0RefH);
39  t0MapRef_ = &*t0RefH;
40  LogVerbatim("Calibration") << "[DTT0FillDefaultFromDB] Reference T0 version: " << t0RefH->version();
41 
42 }
43 
45  // Try to access value in default DB
46  // If it does not exist return value from reference DB
47  // If it does not exist in reference DB, throw exception
48  // Could also set to default zero value
49  float t0Mean,t0RMS;
50  int status = t0Map_->get(wireId,t0Mean,t0RMS,DTTimeUnits::counts);
51  if(!status){
52  return DTT0Data(t0Mean,t0RMS);
53  } else{
54  // Now access reference DB
55  float t0MeanRef,t0RMSRef;
56  int statusRef = t0MapRef_->get(wireId,t0MeanRef,t0RMSRef,DTTimeUnits::counts);
57  if(!statusRef){
58  return DTT0Data(t0MeanRef,t0RMSRef);
59  } else{
60  //...
61  throw cms::Exception("[DTT0FillDefaultFromDB]") << "Could not find t0 entry in reference DB for"
62  << wireId << endl;
63  }
64  }
65 }
66 
67 } // namespace
def setup(process, global_tag, zero_tesla=False)
Definition: GeneralSetup.py:2
void setES(const edm::EventSetup &setup) override
int get(int wheelId, int stationId, int sectorId, int slId, int layerId, int cellId, float &t0mean, float &t0rms, DTTimeUnits::type unit) const
Definition: DTT0.cc:67
Definition: DTT0Rcd.h:9
HLT enums.
T get() const
Definition: EventSetup.h:68
const std::string & version() const
access version
Definition: DTT0.cc:118
DTT0Data correction(const DTWireId &) override