ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Names.h
Revision: 1.53
Committed: Thu Nov 24 11:30:41 2011 UTC (13 years, 5 months ago) by pharris
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_025c, Mit_025b
Branch point for: Mit_025c_branch
Changes since 1.52: +2 -1 lines
Log Message:
Add Embedded Weight

File Contents

# User Rev Content
1 paus 1.7 //--------------------------------------------------------------------------------------------------
2 pharris 1.53 // $Id: Names.h,v 1.52 2011/07/21 16:25:34 rwolf Exp $
3 loizides 1.2 //
4     // Names
5     //
6     // This class defines the standard names for branches,
7     // collections and what else we will standardize.
8     //
9 paus 1.7 // Authors: C.Loizides, C.Paus
10 loizides 1.2 //--------------------------------------------------------------------------------------------------
11 loizides 1.8
12 loizides 1.17 #ifndef MITANA_DATATREE_NAMES_H
13     #define MITANA_DATATREE_NAMES_H
14 paus 1.7
15 loizides 1.1 namespace mithep
16     {
17     class Names
18     {
19 loizides 1.2 public:
20 loizides 1.9 static const char *gkEvtTreeName;
21 sixie 1.14 static const char *gkBarrelBasicClusterBrn;
22     static const char *gkBarrelSuperClusterBrn;
23 bendavid 1.47 static const char *gkBeamSpotBrn;
24 loizides 1.29 static const char *gkCaloJetBrn;
25     static const char *gkCaloMetBrn;
26 loizides 1.31 static const char *gkCaloTauBrn;
27 loizides 1.29 static const char *gkCaloTowerBrn;
28     static const char *gkElectronBrn;
29 pharris 1.53 static const char *gkEmbedWeightBrn;
30 sixie 1.14 static const char *gkEndcapBasicClusterBrn;
31     static const char *gkEndcapSuperClusterBrn;
32 loizides 1.29 static const char *gkEvtHeaderBrn;
33 loizides 1.40 static const char *gkEvtSelDataBrn;
34 bendavid 1.36 static const char *gkGenMetBrn;
35 loizides 1.34 static const char *gkGsfTrackBrn;
36 loizides 1.29 static const char *gkHltBitBrn;
37     static const char *gkHltObjBrn;
38 sixie 1.43 static const char *gkGenJetBrn;
39 loizides 1.29 static const char *gkMCEvtInfoBrn;
40 loizides 1.15 static const char *gkMCPartBrn;
41 mzanetti 1.46 static const char *gkPileupInfoBrn;
42 bendavid 1.50 static const char *gkPileupEnergyDensityBrn;
43 loizides 1.29 static const char *gkMuonBrn;
44 loizides 1.33 static const char *gkMvfConversionBrn;
45 loizides 1.38 static const char *gkL1TechBitsBrn;
46     static const char *gkL1AlgoBitsBrn;
47 loizides 1.29 static const char *gkPFCandidatesBrn;
48 sixie 1.43 static const char *gkPFJetBrn;
49 loizides 1.31 static const char *gkPFTauBrn;
50 dkralph 1.49 static const char *gkHPSTauBrn;
51 rwolf 1.51 static const char *gkNSVFitBrn;
52     static const char *gkNSVFitEMuBrn;
53 rwolf 1.52 static const char *gkNSVFitMuMuBrn;
54 rwolf 1.51 static const char *gkNSVFitETauBrn;
55     static const char *gkNSVFitMuTauBrn;
56 loizides 1.11 static const char *gkPhotonBrn;
57 loizides 1.37 static const char *gkPixelHitBrn;
58 bendavid 1.42 static const char *gkPVBrn;
59 loizides 1.34 static const char *gkPVBeamSpotBrn;
60 loizides 1.29 static const char *gkSC5GenJetBrn;
61     static const char *gkSC5JetBrn;
62 loizides 1.39 static const char *gkStripHitBrn;
63 loizides 1.29 static const char *gkTrackBrn;
64 ceballos 1.45 static const char *gkTrackJetBrn;
65 bendavid 1.41 static const char *gkTrackingParticleBrn;
66 loizides 1.9
67     static const char *gkRunTreeName;
68     static const char *gkRunInfoBrn;
69 loizides 1.10
70     static const char *gkLATreeName;
71     static const char *gkLAHeaderBrn;
72 loizides 1.18
73     static const char *gkHltTreeName;
74     static const char *gkHltTableBrn;
75     static const char *gkHltLabelBrn;
76 bendavid 1.44 static const char *gkHltMenuBrn;
77 loizides 1.18
78 loizides 1.24 static const char *gkAllEvtTreeName;
79     static const char *gkAllEvtHeaderBrn;
80 loizides 1.27 static const char *gkSkimmedHeaders;
81 loizides 1.28
82     static const char *gkBranchTable;
83 loizides 1.1 };
84 loizides 1.5 }
85     #endif