ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/TreeFiller/interface/FillerNSVFit.h
Revision: 1.1
Committed: Thu May 5 12:43:18 2011 UTC (14 years ago) by rwolf
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_025c_branch2, Mit_025c_branch1, Mit_025c_branch0, Mit_025c, Mit_025b, Mit_025a, Mit_025, Mit_025pre2, Mit_024b, Mit_025pre1, Mit_024a, Mit_024, Mit_023, Mit_022a, Mit_022, Mit_021, Mit_021pre2
Branch point for: Mit_025c_branch
Log Message:
added NSVfit information

File Contents

# Content
1 //--------------------------------------------------------------------------------------------------
2 // $Id: FillerNSVFit.h,v 1.7 2011/04/29 14:18:23 rwolf Exp $
3 //
4 // FillerNSVFit
5 //
6 // Implementation of a filler to fill nsv fit information for resonances that decay into tau leptons
7 // (subsequenctly decaying into electrons, muons or hadrons) from EDM.
8 //
9 // Authors: R.Wolf
10 //--------------------------------------------------------------------------------------------------
11
12 #ifndef MITPROD_TREEFILLER_FILLERNSVFIT_H
13 #define MITPROD_TREEFILLER_FILLERNSVFIT_H
14
15 #include "MitAna/DataTree/interface/NSVFitFwd.h"
16 #include "MitProd/TreeFiller/interface/BaseFiller.h"
17
18 namespace mithep
19 {
20 class FillerNSVFit : public BaseFiller
21 {
22 public:
23 FillerNSVFit(const edm::ParameterSet &cfg, const char *name, bool active=1);
24 ~FillerNSVFit();
25
26 void BookDataBlock(TreeWriter &tws);
27 void FillDataBlock(const edm::Event &e, const edm::EventSetup &es);
28
29 private:
30 std::string edmName_; // edm name of NSVFit collection
31 std::string mitName_; // mit name of NSVFit collection
32 mithep::NSVFitArr *hypotheses_; // array of NSVFit hypotheses (can in principle be more than one)
33 };
34 }
35 #endif