/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
SimG4CMS/Forward/interface/CastorSD.h
56 строк
2 KB
Sunanda
Code check
16 июл 2021, 14:45
16 июл 2021, 14:45
3464acf
Код
Авторство
О чём код?
#ifndef Forward_CastorSD_h #define Forward_CastorSD_h // -*- C++ -*- // // Package: Forward // Class : CastorSD // /**\class CastorSD CastorSD.h SimG4CMS/Forward/interface/CastorSD.h Description: Stores hits of Castor in appropriate container Usage: Used in sensitive detector builder */ // // Original Author: // Created: Tue May 16 10:14:34 CEST 2006 // system include files // user include files #include "SimG4CMS/Calo/interface/CaloSD.h" #include "SimG4CMS/Forward/interface/CastorShowerLibrary.h" #include "SimG4CMS/Forward/interface/CastorNumberingScheme.h" #include "SimDataFormats/CaloHit/interface/CastorShowerEvent.h" #include "FWCore/Framework/interface/Frameworkfwd.h" #include "FWCore/ParameterSet/interface/ParameterSetfwd.h" #include "G4LogicalVolume.hh" class CastorSD : public CaloSD { public: CastorSD(const std::string &, const SensitiveDetectorCatalog &clg, edm::ParameterSet const &, const SimTrackManager *); ~CastorSD() override; uint32_t setDetUnitId(const G4Step *step) override; void setNumberingScheme(CastorNumberingScheme *scheme); protected: double getEnergyDeposit(const G4Step *) override; bool getFromLibrary(const G4Step *) override; private: uint32_t rotateUnitID(uint32_t, const G4Track *, const CastorShowerEvent &); CastorNumberingScheme *numberingScheme; CastorShowerLibrary *showerLibrary; G4LogicalVolume *lvC3EF, *lvC3HF, *lvC4EF, *lvC4HF; G4LogicalVolume *lvCAST; // Pointer for CAST sensitive volume (SL trigger) bool useShowerLibrary; double energyThresholdSL; double non_compensation_factor; }; #endif // CastorSD_h