ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/TreeFiller/interface/FillMitTree.h
Revision: 1.6
Committed: Tue Jul 1 21:11:47 2008 UTC (16 years, 10 months ago) by loizides
Content type: text/plain
Branch: MAIN
Changes since 1.5: +3 -2 lines
Log Message:
Updated configs.

File Contents

# User Rev Content
1 paus 1.1 //--------------------------------------------------------------------------------------------------
2 loizides 1.6 // $Id: FillMitTree.h,v 1.5 2008/07/01 14:38:33 loizides Exp $
3 paus 1.1 //
4     // FillMitTree
5     //
6     // This is the one Edm Module which we use to perform all our actions to properly fill the MitTree.
7     // The general function is that this module handles a list of generic fillers, which are called in
8     // the appropriate places of the Edm Module. We do make sure that first the information is
9     // completely stored and later the necessary links will get resolved.
10     //
11     // Authors: C.Paus
12     //--------------------------------------------------------------------------------------------------
13 loizides 1.2
14 paus 1.1 #ifndef TREEFILLER_FILLMITTREE_H
15     #define TREEFILLER_FILLMITTREE_H
16    
17     #include "FWCore/Framework/interface/EDAnalyzer.h"
18     #include "FWCore/Framework/interface/Event.h"
19     #include "FWCore/ParameterSet/interface/ParameterSet.h"
20     #include "FWCore/Framework/interface/Frameworkfwd.h"
21     #include "MitProd/TreeFiller/interface/BaseFiller.h"
22    
23     namespace mithep
24     {
25     class FillMitTree : public edm::EDAnalyzer
26     {
27     public:
28 loizides 1.5 FillMitTree(const edm::ParameterSet &cfg);
29 paus 1.1 ~FillMitTree();
30    
31 loizides 1.5 void analyze (const edm::Event &e, const edm::EventSetup &es);
32     void beginJob(const edm::EventSetup &es);
33 loizides 1.3 void endJob();
34 paus 1.1
35 loizides 1.5 protected:
36     bool configure(const edm::ParameterSet &cfg);
37    
38 loizides 1.6 std::vector<BaseFiller*> fillers_; //list of active fillers
39     bool defactive_; //default activity flag for fillers
40 paus 1.1 };
41     }
42     #endif