ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/TreeFiller/interface/FillerStableParts.h
Revision: 1.1
Committed: Mon Jul 28 23:13:43 2008 UTC (16 years, 9 months ago) by paus
Content type: text/plain
Branch: MAIN
Log Message:
Adding Stable/DecayParts.

File Contents

# User Rev Content
1 paus 1.1 //--------------------------------------------------------------------------------------------------
2     // $Id: $
3     //
4     // FillerStableParts
5     //
6     // Imlementation of a filler to fill an mitedm::PartColl into our mithep::PartColl data structure.
7     //
8     // Authors: Ch.Paus
9     //--------------------------------------------------------------------------------------------------
10    
11     #ifndef TREEFILLER_FILLERSTABLEPARTS_H
12     #define TREEFILLER_FILLERSTABLEPARTS_H
13    
14     #include "MitProd/TreeFiller/interface/BaseFiller.h"
15     #include "MitAna/DataTree/interface/Collections.h"
16    
17     namespace mithep
18     {
19     class FillerStableParts : public BaseFiller
20     {
21     public:
22     FillerStableParts(const edm::ParameterSet &cfg, const char *name, bool active=1);
23     ~FillerStableParts();
24    
25     void BookDataBlock(TreeWriter &tws);
26     void FillDataBlock(const edm::Event &e, const edm::EventSetup &es);
27    
28     private:
29     std::string edmName_;
30     std::string mitName_;
31     mithep::StablePartObjArr *stables_;
32     };
33     }
34     #endif