ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/TreeFiller/interface/FillerGlobalMuons.h
Revision: 1.7
Committed: Tue Jul 1 11:38:47 2008 UTC (16 years, 10 months ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.6: +1 -1 lines
State: FILE REMOVED
Log Message:
Removed GlobalFillers

File Contents

# User Rev Content
1 paus 1.1 //--------------------------------------------------------------------------------------------------
2 loizides 1.7 // $Id: FillerGlobalMuons.h,v 1.6 2008/06/24 14:25:46 loizides Exp $
3 paus 1.1 //
4     // FillerGlobalMuons
5     //
6 loizides 1.6 // Imlementation of a filler to fill EDM global muons into mithep::GlobalMuons.
7 paus 1.1 //
8     // Authors: C.Paus
9     //--------------------------------------------------------------------------------------------------
10 loizides 1.2
11 paus 1.1 #ifndef TREEFILLER_FILLERGLOBALMUONS_H
12     #define TREEFILLER_FILLERGLOBALMUONS_H
13    
14     #include "FWCore/ParameterSet/interface/ParameterSet.h"
15     #include "MitAna/DataUtil/interface/TreeWriter.h"
16     #include "MitAna/DataTree/interface/GlobalMuon.h"
17 loizides 1.2 #include "MitAna/DataTree/interface/Array.h"
18 paus 1.1 #include "MitProd/TreeFiller/interface/BaseFiller.h"
19    
20     namespace mithep
21     {
22     class FillerGlobalMuons : public BaseFiller
23     {
24     public:
25     FillerGlobalMuons(const edm::ParameterSet&);
26     ~FillerGlobalMuons();
27    
28 loizides 1.5 void BookDataBlock(TreeWriter &tws);
29 paus 1.1 void FillDataBlock(const edm::Event&, const edm::EventSetup&);
30     void ResolveLinks (const edm::Event&, const edm::EventSetup&);
31    
32     private:
33 loizides 1.4 std::string edmName_;
34     std::string mitName_;
35 loizides 1.2 mithep::Array<mithep::GlobalMuon> *muons_;
36 paus 1.1 };
37     }
38     #endif