ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Names.h
Revision: 1.45
Committed: Wed May 12 19:04:04 2010 UTC (14 years, 11 months ago) by ceballos
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_018, Mit_017, Mit_017pre3, Mit_017pre2, Mit_017pre1, Mit_016, Mit_015b, Mit_015a, Mit_015, Mit_014e, Mit_014d, Mit_014c, Mit_014b, Mit_014a, Mit_014, Mit_014pre3
Changes since 1.44: +1 -0 lines
Log Message:
small addition

File Contents

# Content
1 //--------------------------------------------------------------------------------------------------
2 // $Id: Names.h,v 1.43 2010/03/27 13:47:06 sixie 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 *gkCaloTauBrn;
26 static const char *gkCaloTowerBrn;
27 static const char *gkElectronBrn;
28 static const char *gkEndcapBasicClusterBrn;
29 static const char *gkEndcapSuperClusterBrn;
30 static const char *gkEvtHeaderBrn;
31 static const char *gkEvtSelDataBrn;
32 static const char *gkGenMetBrn;
33 static const char *gkGsfTrackBrn;
34 static const char *gkHltBitBrn;
35 static const char *gkHltObjBrn;
36 static const char *gkGenJetBrn;
37 static const char *gkMCEvtInfoBrn;
38 static const char *gkMCPartBrn;
39 static const char *gkMuonBrn;
40 static const char *gkMvfConversionBrn;
41 static const char *gkL1TechBitsBrn;
42 static const char *gkL1AlgoBitsBrn;
43 static const char *gkPFCandidatesBrn;
44 static const char *gkPFJetBrn;
45 static const char *gkPFTauBrn;
46 static const char *gkPhotonBrn;
47 static const char *gkPixelHitBrn;
48 static const char *gkPVBrn;
49 static const char *gkPVBeamSpotBrn;
50 static const char *gkSC5GenJetBrn;
51 static const char *gkSC5JetBrn;
52 static const char *gkStripHitBrn;
53 static const char *gkTrackBrn;
54 static const char *gkTrackJetBrn;
55 static const char *gkTrackingParticleBrn;
56
57 static const char *gkRunTreeName;
58 static const char *gkRunInfoBrn;
59
60 static const char *gkLATreeName;
61 static const char *gkLAHeaderBrn;
62
63 static const char *gkHltTreeName;
64 static const char *gkHltTableBrn;
65 static const char *gkHltLabelBrn;
66 static const char *gkHltMenuBrn;
67
68 static const char *gkAllEvtTreeName;
69 static const char *gkAllEvtHeaderBrn;
70 static const char *gkSkimmedHeaders;
71
72 static const char *gkBranchTable;
73 };
74 }
75 #endif