ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Names.h
Revision: 1.55
Committed: Sun Mar 11 23:00:46 2012 UTC (13 years, 1 month ago) by pharris
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_032, Mit_031, Mit_030, Mit_029c, Mit_029b, Mit_030_pre1, Mit_029a, Mit_029, Mit_029_pre1, Mit_028a, Mit_028, Mit_027a, Mit_027, Mit_026, Mit_025e, Mit_025d, HEAD
Changes since 1.54: +2 -1 lines
Log Message:
Small fix

File Contents

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