File indexing completed on 2024-04-06 12:27:35
0001 #ifndef RecoParticleFlow_PFTracking_ConvBremHeavyObjectCache_H
0002 #define RecoParticleFlow_PFTracking_ConvBremHeavyObjectCache_H
0003
0004 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0005 #include "CondFormats/GBRForest/interface/GBRForest.h"
0006 #include "RecoParticleFlow/PFClusterTools/interface/PFEnergyCalibration.h"
0007 #include <memory>
0008
0009 namespace convbremhelpers {
0010 class HeavyObjectCache {
0011 public:
0012 HeavyObjectCache(const edm::ParameterSet&);
0013 std::unique_ptr<const GBRForest> gbrBarrelLowPt_;
0014 std::unique_ptr<const GBRForest> gbrBarrelHighPt_;
0015 std::unique_ptr<const GBRForest> gbrEndcapsLowPt_;
0016 std::unique_ptr<const GBRForest> gbrEndcapsHighPt_;
0017 std::unique_ptr<const PFEnergyCalibration> pfcalib_;
0018 };
0019 }
0020
0021 #endif