ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/TreeFiller/interface/FillerEvtSelData.h
Revision: 1.1
Committed: Tue Dec 8 11:34:27 2009 UTC (15 years, 4 months ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_013pre1, Mit_012i, Mit_012h, Mit_012g, Mit_012f, Mit_012e
Log Message:
Added evt sel data filler

File Contents

# Content
1 //--------------------------------------------------------------------------------------------------
2 // $Id: FillerEvtSelData.h,v 1.10 2009/09/25 08:42:50 loizides Exp $
3 //
4 // FillerEvtSelData
5 //
6 // Fill event selection data object.
7 //
8 // Authors: C.Loizides
9 //--------------------------------------------------------------------------------------------------
10
11 #ifndef MITPROD_TREEFILLER_FILLEREVTSELDATA_H
12 #define MITPROD_TREEFILLER_FILLEREVTSELDATA_H
13
14 #include "MitProd/TreeFiller/interface/BaseFiller.h"
15
16 namespace mithep
17 {
18 class EvtSelData;
19
20 class FillerEvtSelData : public BaseFiller
21 {
22 public:
23 FillerEvtSelData(const edm::ParameterSet &cfg,
24 const char *name="EvtSelData", bool active=1);
25 ~FillerEvtSelData();
26
27 void BookDataBlock(TreeWriter &tws, const edm::EventSetup &es);
28 void FillDataBlock(const edm::Event &e, const edm::EventSetup &es);
29
30 private:
31 std::string mitName_; //mit branch name
32 std::string edmName_; //edm branch name
33 EvtSelData *evtSelData_; //event selection data object
34 };
35 }
36 #endif