/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FastSimulation/ForwardDetectors/plugins/CastorFastClusterProducer.h
33 строки
1 KB
Sunanda
Take care of deprecated code in FastSimulation/ForwardDetectors
11 мар 2022, 09:45
11 мар 2022, 09:45
3ef7045
Код
Авторство
О чём код?
#ifndef FastSimulation_ForwardDetectors_CastorFastClusterProducer_h #define FastSimulation_ForwardDetectors_CastorFastClusterProducer_h #include "FWCore/Framework/interface/stream/EDProducer.h" #include "FWCore/ParameterSet/interface/ParameterSet.h" #include "FWCore/Utilities/interface/EDGetToken.h" // Castorobject includes #include "DataFormats/CastorReco/interface/CastorCluster.h" #include "DataFormats/HepMCCandidate/interface/GenParticle.h" #include "DataFormats/Math/interface/Point3D.h" // // class decleration // class CastorFastClusterProducer : public edm::stream::EDProducer<> { public: explicit CastorFastClusterProducer(const edm::ParameterSet&); ~CastorFastClusterProducer() override; private: void produce(edm::Event&, const edm::EventSetup&) override; double make_noise(); // ----------member data --------------------------- typedef math::XYZPointD Point; typedef ROOT::Math::RhoEtaPhiPoint ClusterPoint; typedef std::vector<reco::CastorCluster> CastorClusterCollection; const edm::EDGetTokenT<reco::GenParticleCollection> tokGenPart_; }; #endif