/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoParticleFlow/PFTracking/interface/ConvBremHeavyObjectCache.h
21 строка
767 B
Sunanda
Update the .h files to have better protection
29 мар 2022, 12:30
29 мар 2022, 12:30
8205fd1
Код
Авторство
О чём код?
#ifndef RecoParticleFlow_PFTracking_ConvBremHeavyObjectCache_H #define RecoParticleFlow_PFTracking_ConvBremHeavyObjectCache_H #include "FWCore/ParameterSet/interface/ParameterSet.h" #include "CondFormats/GBRForest/interface/GBRForest.h" #include "RecoParticleFlow/PFClusterTools/interface/PFEnergyCalibration.h" #include <memory> namespace convbremhelpers { class HeavyObjectCache { public: HeavyObjectCache(const edm::ParameterSet&); std::unique_ptr<const GBRForest> gbrBarrelLowPt_; std::unique_ptr<const GBRForest> gbrBarrelHighPt_; std::unique_ptr<const GBRForest> gbrEndcapsLowPt_; std::unique_ptr<const GBRForest> gbrEndcapsHighPt_; std::unique_ptr<const PFEnergyCalibration> pfcalib_; }; } // namespace convbremhelpers #endif