ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Names.h
Revision: 1.54
Committed: Tue Jan 31 15:39:49 2012 UTC (13 years, 3 months ago) by rwolf
Content type: text/plain
Branch: MAIN
Changes since 1.53: +1 -6 lines
Log Message:
remove obsolete NSVfit stuff from Bambu

File Contents

# User Rev Content
1 paus 1.7 //--------------------------------------------------------------------------------------------------
2 rwolf 1.54 // $Id: Names.h,v 1.53 2011/11/24 11:30:41 pharris 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 loizides 1.11 static const char *gkPhotonBrn;
52 loizides 1.37 static const char *gkPixelHitBrn;
53 bendavid 1.42 static const char *gkPVBrn;
54 loizides 1.34 static const char *gkPVBeamSpotBrn;
55 loizides 1.29 static const char *gkSC5GenJetBrn;
56     static const char *gkSC5JetBrn;
57 loizides 1.39 static const char *gkStripHitBrn;
58 loizides 1.29 static const char *gkTrackBrn;
59 ceballos 1.45 static const char *gkTrackJetBrn;
60 bendavid 1.41 static const char *gkTrackingParticleBrn;
61 loizides 1.9
62     static const char *gkRunTreeName;
63     static const char *gkRunInfoBrn;
64 loizides 1.10
65     static const char *gkLATreeName;
66     static const char *gkLAHeaderBrn;
67 loizides 1.18
68     static const char *gkHltTreeName;
69     static const char *gkHltTableBrn;
70     static const char *gkHltLabelBrn;
71 bendavid 1.44 static const char *gkHltMenuBrn;
72 loizides 1.18
73 loizides 1.24 static const char *gkAllEvtTreeName;
74     static const char *gkAllEvtHeaderBrn;
75 loizides 1.27 static const char *gkSkimmedHeaders;
76 loizides 1.28
77     static const char *gkBranchTable;
78 loizides 1.1 };
79 loizides 1.5 }
80     #endif