ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/TreeFiller/interface/FillerGsfTracks.h
Revision: 1.8
Committed: Fri Aug 29 02:50:02 2008 UTC (16 years, 8 months ago) by loizides
Content type: text/plain
Branch: MAIN
Changes since 1.7: +7 -19 lines
Log Message:
Try to reuse as much of track filler as possible.

File Contents

# User Rev Content
1 loizides 1.1 //--------------------------------------------------------------------------------------------------
2 loizides 1.8 // $Id: FillerGsfTracks.h,v 1.7 2008/07/31 13:39:57 bendavid Exp $
3 loizides 1.1 //
4     // FillerGsfTracks
5     //
6     // Imlementation of a filler to fill EDM gsf tracks into our mithep::Track data structure.
7     //
8     // Authors: J.Bendavid
9     //--------------------------------------------------------------------------------------------------
10    
11     #ifndef TREEFILLER_FILLERGSFTRACKS_H
12     #define TREEFILLER_FILLERGSFTRACKS_H
13    
14     #include "FWCore/ParameterSet/interface/ParameterSet.h"
15     #include "DataFormats/GsfTrackReco/interface/GsfTrack.h"
16     #include "DataFormats/GsfTrackReco/interface/GsfTrackFwd.h"
17 loizides 1.8 #include "MitProd/TreeFiller/interface/FillerTracks.h"
18 loizides 1.1
19     namespace mithep
20     {
21 loizides 1.8 class FillerGsfTracks : public FillerTracks
22 loizides 1.1 {
23     public:
24 loizides 1.8 FillerGsfTracks(const edm::ParameterSet &cfg, const char *name, bool active=1);
25 loizides 1.1 ~FillerGsfTracks();
26    
27 loizides 1.8 void BookDataBlock(TreeWriter &tws);
28     void FillDataBlock(const edm::Event &e, const edm::EventSetup &es);
29     void InitLayerMap();
30 loizides 1.1
31     private:
32 loizides 1.6 mithep::GsfTrackMap *trackMap_; //map wrt tracks
33 loizides 1.1 };
34     }
35     #endif