ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/TreeFiller/interface/FillerGsfTracks.h
Revision: 1.11
Committed: Mon Nov 3 18:11:10 2008 UTC (16 years, 6 months ago) by bendavid
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.10: +1 -1 lines
State: FILE REMOVED
Log Message:
Changed to base class usage of reco::Track throughout and removed FillerGsfTracks

File Contents

# User Rev Content
1 loizides 1.1 //--------------------------------------------------------------------------------------------------
2 bendavid 1.11 // $Id: FillerGsfTracks.h,v 1.10 2008/11/03 11:22:35 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 loizides 1.9 #ifndef MITPROD_TREEFILLER_FILLERGSFTRACKS_H
12     #define MITPROD_TREEFILLER_FILLERGSFTRACKS_H
13 loizides 1.1
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 bendavid 1.10 FillerGsfTracks(const edm::ParameterSet &cfg, const char *name, bool active=1, bool ecalActive=0);
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