CMS 3D CMS Logo

TPTreeFiller.h
Go to the documentation of this file.
1 #ifndef PhysicsTools_TagAndProbe_TreeFiller_h
2 #define PhysicsTools_TagAndProbe_TreeFiller_h
3 
5 
6 namespace tnp {
7  class TPTreeFiller : public BaseTreeFiller {
8  public:
11  ~TPTreeFiller();
12 
13  // We declare 'const' the methods which don't change the configuration
14  void init(const edm::Event& iEvent) const;
15  void fill(const reco::CandidateBaseRef& probe, double mass, bool mcTrue = false, float mcMass = 0.0) const;
16 
17  protected:
19  mutable float mass_;
21  mutable int32_t mcTrue_;
23  mutable float mcMass_;
24  };
25 } // namespace tnp
26 
27 #endif
void init(const edm::Event &iEvent) const
Definition: TPTreeFiller.cc:17
void fill(const reco::CandidateBaseRef &probe, double mass, bool mcTrue=false, float mcMass=0.0) const
Definition: TPTreeFiller.cc:19
TPTreeFiller(const edm::ParameterSet &config, edm::ConsumesCollector &&iC)
Definition: TPTreeFiller.h:9
Definition: config.py:1
int iEvent
Definition: GenABIO.cc:224
float mass_
extra branch for the mass
Definition: TPTreeFiller.h:19
int32_t mcTrue_
extra branch for the mc truth
Definition: TPTreeFiller.h:21
float mcMass_
extra branch for the mc-truth mass
Definition: TPTreeFiller.h:23