/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Validation/Geometry/interface/MaterialBudgetHcal.h
49 строк
2 KB
Sunanda
Use of ESGetToken in Validation/Geometry and updating the cfg's
20 дек 2021, 19:48
20 дек 2021, 19:48
386ca78
Код
Авторство
О чём код?
#ifndef Validation_Geometry_MaterialBudgetHcal_h #define Validation_Geometry_MaterialBudgetHcal_h #include "Validation/Geometry/interface/MaterialBudgetHcalHistos.h" #include "Validation/Geometry/interface/MaterialBudgetCastorHistos.h" #include "SimG4Core/Watcher/interface/SimWatcher.h" #include "SimG4Core/Notification/interface/Observer.h" #include "FWCore/ParameterSet/interface/ParameterSet.h" #include "DetectorDescription/Core/interface/DDCompactView.h" #include "DetectorDescription/DDCMS/interface/DDCompactView.h" #include "Geometry/Records/interface/IdealGeometryRecord.h" #include <CLHEP/Vector/LorentzVector.h> class BeginOfTrack; class G4Step; class EndOfTrack; class MaterialBudgetHcal : public SimWatcher, public Observer<const BeginOfTrack*>, public Observer<const G4Step*>, public Observer<const EndOfTrack*> { public: MaterialBudgetHcal(const edm::ParameterSet&); MaterialBudgetHcal(const MaterialBudgetHcal&) = delete; // stop default const MaterialBudgetHcal& operator=(const MaterialBudgetHcal&) = delete; // stop default void registerConsumes(edm::ConsumesCollector) override; void beginRun(edm::EventSetup const&) override; private: void update(const BeginOfTrack*) override; void update(const G4Step*) override; void update(const EndOfTrack*) override; bool stopAfter(const G4Step*); std::unique_ptr<MaterialBudgetHcalHistos> theHistoHcal_; std::unique_ptr<MaterialBudgetCastorHistos> theHistoCastor_; edm::ESGetToken<DDCompactView, IdealGeometryRecord> cpvTokenDDD_; edm::ESGetToken<cms::DDCompactView, IdealGeometryRecord> cpvTokenDD4hep_; double rMax_, zMax_; bool fromdd4hep_; }; #endif