ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Names.h
Revision: 1.30
Committed: Thu Mar 19 23:09:36 2009 UTC (16 years, 1 month ago) by bendavid
Content type: text/plain
Branch: MAIN
Changes since 1.29: +3 -1 lines
Log Message:
Added Tau classes

File Contents

# Content
1 //--------------------------------------------------------------------------------------------------
2 // $Id: Names.h,v 1.29 2009/03/19 18:03:12 loizides Exp $
3 //
4 // Names
5 //
6 // This class defines the standard names for branches,
7 // collections and what else we will standardize.
8 //
9 // Authors: C.Loizides, C.Paus
10 //--------------------------------------------------------------------------------------------------
11
12 #ifndef MITANA_DATATREE_NAMES_H
13 #define MITANA_DATATREE_NAMES_H
14
15 namespace mithep
16 {
17 class Names
18 {
19 public:
20 static const char *gkEvtTreeName;
21 static const char *gkBarrelBasicClusterBrn;
22 static const char *gkBarrelSuperClusterBrn;
23 static const char *gkCaloJetBrn;
24 static const char *gkCaloMetBrn;
25 static const char *gkCaloTowerBrn;
26 static const char *gkElectronBrn;
27 static const char *gkEndcapBasicClusterBrn;
28 static const char *gkEndcapSuperClusterBrn;
29 static const char *gkEvtHeaderBrn;
30 static const char *gkHltBitBrn;
31 static const char *gkHltObjBrn;
32 static const char *gkIC5GenJetBrn;
33 static const char *gkL1BitBrn;
34 static const char *gkL1ObjBrn;
35 static const char *gkMCEvtInfoBrn;
36 static const char *gkMCPartBrn;
37 static const char *gkMuonBrn;
38 static const char *gkPFCandidatesBrn;
39 static const char *gkPhotonBrn;
40 static const char *gkSC5GenJetBrn;
41 static const char *gkSC5JetBrn;
42 static const char *gkTrackBrn;
43 static const char *gkCaloTauBrn;
44 static const char *gkPFTauBrn;
45
46 static const char *gkRunTreeName;
47 static const char *gkRunInfoBrn;
48
49 static const char *gkLATreeName;
50 static const char *gkLAHeaderBrn;
51
52 static const char *gkHltTreeName;
53 static const char *gkHltTableBrn;
54 static const char *gkHltLabelBrn;
55
56 static const char *gkL1TreeName;
57 static const char *gkL1TableBrn;
58
59 static const char *gkAllEvtTreeName;
60 static const char *gkAllEvtHeaderBrn;
61 static const char *gkSkimmedHeaders;
62
63 static const char *gkBranchTable;
64 };
65 }
66 #endif