CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
DTTTrigCorrection Class Reference

#include <DTTTrigCorrection.h>

Inheritance diagram for DTTTrigCorrection:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

void analyze (const edm::Event &event, const edm::EventSetup &setup) override
 
void beginJob () override
 
void beginRun (const edm::Run &run, const edm::EventSetup &setup) override
 
 DTTTrigCorrection (const edm::ParameterSet &pset)
 Constructor. More...
 
void endJob () override
 
 ~DTTTrigCorrection () override
 Destructor. More...
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
SerialTaskQueueglobalLuminosityBlocksQueue ()
 
SerialTaskQueueglobalRunsQueue ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
 ~EDAnalyzer () override
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase &&)=default
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
ESProxyIndex const * esGetTokenIndices (edm::Transition iTrans) const
 
std::vector< ESProxyIndex > const & esGetTokenIndicesVector (edm::Transition iTrans) const
 
std::vector< ESRecordIndex > const & esGetTokenRecordIndicesVector (edm::Transition iTrans) const
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::array< std::vector< ModuleDescription const * > *, NumBranchTypes > &modulesAll, std::vector< ModuleProcessName > &modulesInPreviousProcesses, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void selectInputProcessBlocks (ProductRegistry const &productRegistry, ProcessBlockHelperBase const &processBlockHelperBase)
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Attributes

std::unique_ptr< dtCalibration::DTTTrigBaseCorrectioncorrectionAlgo_
 
std::string dbLabel_
 
edm::ESHandle< DTGeometrymuonGeom_
 
const DTTtrigtTrigMap_
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
static bool wantsGlobalLuminosityBlocks ()
 
static bool wantsGlobalRuns ()
 
static bool wantsInputProcessBlocks ()
 
static bool wantsProcessBlocks ()
 
static bool wantsStreamLuminosityBlocks ()
 
static bool wantsStreamRuns ()
 
- Protected Member Functions inherited from edm::EDConsumerBase
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
template<BranchType B = InEvent>
EDConsumerBaseAdaptor< B > consumes (edm::InputTag tag) noexcept
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes ()
 
template<Transition Tr = Transition::Event>
constexpr auto esConsumes () noexcept
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
template<Transition Tr = Transition::Event>
auto esConsumes (ESInputTag tag) noexcept
 
template<Transition Tr = Transition::Event>
ESGetTokenGeneric esConsumes (eventsetup::EventSetupRecordKey const &iRecord, eventsetup::DataKey const &iKey)
 Used with EventSetupRecord::doGet. More...
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 

Detailed Description

Class which read a ttrig DB and correct it with the near SL (or the global average)

Author
S. Maselli - INFN Torino

Definition at line 23 of file DTTTrigCorrection.h.

Constructor & Destructor Documentation

◆ DTTTrigCorrection()

DTTTrigCorrection::DTTTrigCorrection ( const edm::ParameterSet pset)

Constructor.

Definition at line 35 of file DTTTrigCorrection.cc.

36  : dbLabel_(pset.getUntrackedParameter<string>("dbLabel", "")),
38  pset.getParameter<string>("correctionAlgo"), pset.getParameter<ParameterSet>("correctionAlgoConfig"))} {
39  LogVerbatim("Calibration") << "[DTTTrigCorrection] Constructor called" << endl;
40 }

References get, and muonDTDigis_cfi::pset.

◆ ~DTTTrigCorrection()

DTTTrigCorrection::~DTTTrigCorrection ( )
override

Destructor.

Definition at line 42 of file DTTTrigCorrection.cc.

42  {
43  LogVerbatim("Calibration") << "[DTTTrigCorrection] Destructor called" << endl;
44 }

Member Function Documentation

◆ analyze()

void DTTTrigCorrection::analyze ( const edm::Event event,
const edm::EventSetup setup 
)
inlineoverridevirtual

Implements edm::EDAnalyzer.

Definition at line 35 of file DTTTrigCorrection.h.

35 {}

◆ beginJob()

void DTTTrigCorrection::beginJob ( void  )
inlineoverridevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 33 of file DTTTrigCorrection.h.

33 {}

◆ beginRun()

void DTTTrigCorrection::beginRun ( const edm::Run run,
const edm::EventSetup setup 
)
overridevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 46 of file DTTTrigCorrection.cc.

46  {
47  // Get tTrig record from DB
50  tTrigMap_ = &*tTrig;
51  LogVerbatim("Calibration") << "[DTTTrigCorrection]: TTrig version: " << tTrig->version() << endl;
52 
53  // Get geometry from Event Setup
55 
56  // Pass EventSetup to correction Algo
57  correctionAlgo_->setES(setup);
58 }

References correctionAlgo_, dbLabel_, get, muonGeom_, singleTopDQM_cfi::setup, dttriganalyzer_cfi::tTrig, and tTrigMap_.

◆ endJob()

void DTTTrigCorrection::endJob ( void  )
overridevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 60 of file DTTTrigCorrection.cc.

60  {
61  // Create the object to be written to DB
62  DTTtrig* tTrigNewMap = new DTTtrig();
63 
64  for (vector<const DTSuperLayer*>::const_iterator sl = muonGeom_->superLayers().begin();
65  sl != muonGeom_->superLayers().end();
66  ++sl) {
67  // Get old value from DB
68  float tTrigMean, tTrigSigma, kFactor;
69  int status = tTrigMap_->get((*sl)->id(), tTrigMean, tTrigSigma, kFactor, DTTimeUnits::ns);
70 
71  //Compute new ttrig
72  try {
73  dtCalibration::DTTTrigData tTrigCorr = correctionAlgo_->correction((*sl)->id());
74  float tTrigMeanNew = tTrigCorr.mean;
75  float tTrigSigmaNew = tTrigCorr.sigma;
76  float kFactorNew = tTrigCorr.kFactor;
77  tTrigNewMap->set((*sl)->id(), tTrigMeanNew, tTrigSigmaNew, kFactorNew, DTTimeUnits::ns);
78 
79  LogVerbatim("Calibration") << "New tTrig for: " << (*sl)->id() << " mean from " << tTrigMean << " to "
80  << tTrigMeanNew << " sigma from " << tTrigSigma << " to " << tTrigSigmaNew
81  << " kFactor from " << kFactor << " to " << kFactorNew << endl;
82  } catch (cms::Exception& e) {
83  LogError("Calibration") << e.explainSelf();
84  // Set db to the old value, if it was there in the first place
85  if (!status) {
86  tTrigNewMap->set((*sl)->id(), tTrigMean, tTrigSigma, kFactor, DTTimeUnits::ns);
87  LogVerbatim("Calibration") << "Keep old tTrig for: " << (*sl)->id() << " mean " << tTrigMean << " sigma "
88  << tTrigSigma << " kFactor " << kFactor << endl;
89  }
90  continue;
91  }
92  } //End of loop on superlayers
93 
94  //Write object to DB
95  LogVerbatim("Calibration") << "[DTTTrigCorrection]: Writing ttrig object to DB!" << endl;
96  string record = "DTTtrigRcd";
97  DTCalibDBUtils::writeToDB<DTTtrig>(record, tTrigNewMap);
98 }

References correctionAlgo_, MillePedeFileConverter_cfg::e, DTTtrig::get(), dttriganalyzer_cfi::kFactor, dtCalibration::DTTTrigData::kFactor, dtCalibration::DTTTrigData::mean, muonGeom_, DTTimeUnits::ns, AlCaHarvesting_cff::record, DTTtrig::set(), dtCalibration::DTTTrigData::sigma, mps_update::status, DTGeometry::superLayers(), and tTrigMap_.

Referenced by o2olib.O2ORunMgr::executeJob().

Member Data Documentation

◆ correctionAlgo_

std::unique_ptr<dtCalibration::DTTTrigBaseCorrection> DTTTrigCorrection::correctionAlgo_
private

Definition at line 45 of file DTTTrigCorrection.h.

Referenced by beginRun(), and endJob().

◆ dbLabel_

std::string DTTTrigCorrection::dbLabel_
private

Definition at line 40 of file DTTTrigCorrection.h.

Referenced by beginRun().

◆ muonGeom_

edm::ESHandle<DTGeometry> DTTTrigCorrection::muonGeom_
private

Definition at line 43 of file DTTTrigCorrection.h.

Referenced by beginRun(), and endJob().

◆ tTrigMap_

const DTTtrig* DTTTrigCorrection::tTrigMap_
private

Definition at line 42 of file DTTTrigCorrection.h.

Referenced by beginRun(), and endJob().

dtCalibration::DTTTrigData
Definition: DTTTrigBaseCorrection.h:19
DTTtrig
Definition: DTTtrig.h:68
mps_update.status
status
Definition: mps_update.py:68
DTTtrigRcd
Definition: DTTtrigRcd.h:5
dttriganalyzer_cfi.tTrig
tTrig
Definition: dttriganalyzer_cfi.py:11
dtCalibration::DTTTrigData::sigma
double sigma
Definition: DTTTrigBaseCorrection.h:26
singleTopDQM_cfi.setup
setup
Definition: singleTopDQM_cfi.py:37
DTTimeUnits::ns
Definition: DTTimeUnits.h:32
edm::ESHandle< DTTtrig >
DTTtrig::get
int get(int wheelId, int stationId, int sectorId, int slId, float &tTrig, float &tTrms, float &kFact, DTTimeUnits::type unit) const
get content
Definition: DTTtrig.cc:59
DTTTrigCorrection::correctionAlgo_
std::unique_ptr< dtCalibration::DTTTrigBaseCorrection > correctionAlgo_
Definition: DTTTrigCorrection.h:45
edm::ParameterSet
Definition: ParameterSet.h:47
DTTTrigCorrection::muonGeom_
edm::ESHandle< DTGeometry > muonGeom_
Definition: DTTTrigCorrection.h:43
DTGeometry::superLayers
const std::vector< const DTSuperLayer * > & superLayers() const
Return a vector of all SuperLayer.
Definition: DTGeometry.cc:86
DTTtrig::set
int set(int wheelId, int stationId, int sectorId, int slId, float tTrig, float tTrms, float kFact, DTTimeUnits::type unit)
Definition: DTTtrig.cc:172
AlCaHarvesting_cff.record
record
Definition: AlCaHarvesting_cff.py:42
edm::LogError
Log< level::Error, false > LogError
Definition: MessageLogger.h:123
get
#define get
dtCalibration::DTTTrigData::mean
double mean
Definition: DTTTrigBaseCorrection.h:25
DTTTrigCorrection::tTrigMap_
const DTTtrig * tTrigMap_
Definition: DTTTrigCorrection.h:42
dttriganalyzer_cfi.kFactor
kFactor
Definition: dttriganalyzer_cfi.py:7
edm::LogVerbatim
Log< level::Info, true > LogVerbatim
Definition: MessageLogger.h:128
dtCalibration::DTTTrigData::kFactor
double kFactor
Definition: DTTTrigBaseCorrection.h:27
cms::Exception
Definition: Exception.h:70
MuonGeometryRecord
Definition: MuonGeometryRecord.h:34
DTTTrigCorrection::dbLabel_
std::string dbLabel_
Definition: DTTTrigCorrection.h:40
muonDTDigis_cfi.pset
pset
Definition: muonDTDigis_cfi.py:27
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37