ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/TreeFiller/interface/FillerMuons.h
Revision: 1.14
Committed: Mon Oct 18 01:34:47 2010 UTC (14 years, 6 months ago) by bendavid
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_015b, Mit_015a, Mit_015
Changes since 1.13: +2 -1 lines
Log Message:
fill corrected expected hits inner, ambiguous gsf tracks

File Contents

# User Rev Content
1 loizides 1.1 //--------------------------------------------------------------------------------------------------
2 bendavid 1.14 // $Id: FillerMuons.h,v 1.13 2010/05/06 17:31:23 bendavid Exp $
3 loizides 1.1 //
4     // FillerMuons
5     //
6 loizides 1.8 // Implementation of a filler to fill EDM muons into our mithep::Muon data structure.
7 loizides 1.1 //
8     // Authors: J.Bendavid
9     //--------------------------------------------------------------------------------------------------
10    
11 loizides 1.5 #ifndef MITPROD_TREEFILLER_FILLERMUONS_H
12     #define MITPROD_TREEFILLER_FILLERMUONS_H
13 loizides 1.1
14 loizides 1.10 #include "MitAna/DataTree/interface/MuonFwd.h"
15     #include "MitProd/TreeFiller/interface/AssociationMaps.h"
16 loizides 1.1 #include "MitProd/TreeFiller/interface/BaseFiller.h"
17    
18     namespace mithep
19     {
20     class FillerMuons : public BaseFiller
21     {
22     public:
23 loizides 1.6 FillerMuons(const edm::ParameterSet &cfg, const char *name, bool active=1);
24 loizides 1.1 ~FillerMuons();
25    
26 bendavid 1.12 void BookDataBlock(TreeWriter &tws);
27 loizides 1.9 void FillDataBlock(const edm::Event &e, const edm::EventSetup &es);
28 loizides 1.1
29     private:
30 loizides 1.4 std::string edmName_; //edm name of muons collection
31 bendavid 1.14 std::string expectedHitsName_; //edm name of corrected expected hits valuemap
32 loizides 1.8 std::string mitName_; //mit name of Muons
33 loizides 1.4 std::string globalTrackMapName_; //name of imported map wrt global muons
34     std::string staTrackMapName_; //name of imported map wrt sta muons
35     std::string staVtxTrackMapName_; //name of imported map wrt sta vtx muons
36     std::string trackerTrackMapName_; //name of imported map wrt tracker muons
37 bendavid 1.7 std::string muonMapName_; //name of exported muon map
38 bendavid 1.13 std::string pvEdmName_; //name of primary vertex collection
39     std::string pvBSEdmName_; //name of bs-constrained pv collection
40 loizides 1.4 const mithep::TrackMap *globalTrackMap_; //map wrt global muons
41     const mithep::TrackMap *standaloneTrackMap_; //map wrt standalone muons
42     const mithep::TrackMap *standaloneVtxTrackMap_; //map wrt standalone vertex muons
43     const mithep::TrackMap *trackerTrackMap_; //map wrt tracker track muons
44 bendavid 1.7 mithep::MuonMap *muonMap_; //exported muon map
45 loizides 1.4 mithep::MuonArr *muons_; //array of Muons
46 loizides 1.1 };
47     }
48     #endif