CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CaloRecHitCopy.h
Go to the documentation of this file.
1 #ifndef FastSimulation_CaloRecHitCopy_H
2 #define FastSimulation_CaloRecHitCopy_H
3 
4 // The CaloRecHits copy for HLT
5 
6 
9 
10 #include <vector>
11 #include <string>
12 
13 class ParameterSet;
14 class Event;
15 class EventSetup;
16 
18 {
19 
20  public:
21 
22  explicit CaloRecHitCopy(edm::ParameterSet const & p);
23  virtual ~CaloRecHitCopy();
24  virtual void produce(edm::Event & e, const edm::EventSetup & c) override;
25 
26  private:
27 
28  std::vector<edm::InputTag> theInputRecHitCollections;
29  std::vector<std::string> theOutputRecHitCollections;
30  std::vector<unsigned int> theInputRecHitCollectionTypes;
31  std::vector<bool> theOutputRecHitInstances;
32 
33 };
34 
35 #endif
virtual void produce(edm::Event &e, const edm::EventSetup &c) override
std::vector< bool > theOutputRecHitInstances
std::vector< unsigned int > theInputRecHitCollectionTypes
std::vector< std::string > theOutputRecHitCollections
std::vector< edm::InputTag > theInputRecHitCollections
virtual ~CaloRecHitCopy()
CaloRecHitCopy(edm::ParameterSet const &p)