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

File Contents

# User Rev Content
1 loizides 1.4 //--------------------------------------------------------------------------------------------------
2 loizides 1.8 // $Id: FillTracks.h,v 1.7 2008/06/24 14:25:46 loizides Exp $
3 loizides 1.4 //
4     // FillTracks
5     //
6     // Module copying general EDM tracks into mithep::Tracks.
7     //
8     // Authors: C.Loizides, J.Bendavid
9     //--------------------------------------------------------------------------------------------------
10 bendavid 1.1
11     #ifndef TREEFILLER_FILLTRACKS_H
12     #define TREEFILLER_FILLTRACKS_H
13    
14     #include "FWCore/Framework/interface/EDAnalyzer.h"
15     #include "FWCore/Framework/interface/Event.h"
16     #include "FWCore/ParameterSet/interface/ParameterSet.h"
17     #include "FWCore/Framework/interface/Frameworkfwd.h"
18     #include "MitAna/DataTree/interface/Track.h"
19 loizides 1.3 #include "MitAna/DataTree/interface/Array.h"
20 bendavid 1.1
21     namespace mithep
22     {
23     class FillTracks : public edm::EDAnalyzer
24     {
25     public:
26     FillTracks(const edm::ParameterSet&);
27     ~FillTracks();
28    
29     void analyze(const edm::Event&, const edm::EventSetup&);
30     void beginJob(edm::EventSetup const&);
31 loizides 1.5 void endJob();
32 bendavid 1.1
33     private:
34 loizides 1.3 mithep::Array<mithep::Track> *tracks_;
35 bendavid 1.1 std::string trackSource_;
36     std::string trackBranch_;
37     };
38 loizides 1.2 }
39 bendavid 1.1 #endif