ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Names.h
Revision: 1.52
Committed: Thu Jul 21 16:25:34 2011 UTC (13 years, 9 months ago) by rwolf
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_025a, Mit_025, Mit_025pre2, Mit_024b, Mit_025pre1, Mit_024a, Mit_024
Changes since 1.51: +2 -1 lines
Log Message:
added new name for nsvfit solution in mumu channel

File Contents

# User Rev Content
1 paus 1.7 //--------------------------------------------------------------------------------------------------
2 rwolf 1.52 // $Id: Names.h,v 1.51 2011/05/05 12:40:35 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 sixie 1.14 static const char *gkEndcapBasicClusterBrn;
30     static const char *gkEndcapSuperClusterBrn;
31 loizides 1.29 static const char *gkEvtHeaderBrn;
32 loizides 1.40 static const char *gkEvtSelDataBrn;
33 bendavid 1.36 static const char *gkGenMetBrn;
34 loizides 1.34 static const char *gkGsfTrackBrn;
35 loizides 1.29 static const char *gkHltBitBrn;
36     static const char *gkHltObjBrn;
37 sixie 1.43 static const char *gkGenJetBrn;
38 loizides 1.29 static const char *gkMCEvtInfoBrn;
39 loizides 1.15 static const char *gkMCPartBrn;
40 mzanetti 1.46 static const char *gkPileupInfoBrn;
41 bendavid 1.50 static const char *gkPileupEnergyDensityBrn;
42 loizides 1.29 static const char *gkMuonBrn;
43 loizides 1.33 static const char *gkMvfConversionBrn;
44 loizides 1.38 static const char *gkL1TechBitsBrn;
45     static const char *gkL1AlgoBitsBrn;
46 loizides 1.29 static const char *gkPFCandidatesBrn;
47 sixie 1.43 static const char *gkPFJetBrn;
48 loizides 1.31 static const char *gkPFTauBrn;
49 dkralph 1.49 static const char *gkHPSTauBrn;
50 rwolf 1.51 static const char *gkNSVFitBrn;
51     static const char *gkNSVFitEMuBrn;
52 rwolf 1.52 static const char *gkNSVFitMuMuBrn;
53 rwolf 1.51 static const char *gkNSVFitETauBrn;
54     static const char *gkNSVFitMuTauBrn;
55 loizides 1.11 static const char *gkPhotonBrn;
56 loizides 1.37 static const char *gkPixelHitBrn;
57 bendavid 1.42 static const char *gkPVBrn;
58 loizides 1.34 static const char *gkPVBeamSpotBrn;
59 loizides 1.29 static const char *gkSC5GenJetBrn;
60     static const char *gkSC5JetBrn;
61 loizides 1.39 static const char *gkStripHitBrn;
62 loizides 1.29 static const char *gkTrackBrn;
63 ceballos 1.45 static const char *gkTrackJetBrn;
64 bendavid 1.41 static const char *gkTrackingParticleBrn;
65 loizides 1.9
66     static const char *gkRunTreeName;
67     static const char *gkRunInfoBrn;
68 loizides 1.10
69     static const char *gkLATreeName;
70     static const char *gkLAHeaderBrn;
71 loizides 1.18
72     static const char *gkHltTreeName;
73     static const char *gkHltTableBrn;
74     static const char *gkHltLabelBrn;
75 bendavid 1.44 static const char *gkHltMenuBrn;
76 loizides 1.18
77 loizides 1.24 static const char *gkAllEvtTreeName;
78     static const char *gkAllEvtHeaderBrn;
79 loizides 1.27 static const char *gkSkimmedHeaders;
80 loizides 1.28
81     static const char *gkBranchTable;
82 loizides 1.1 };
83 loizides 1.5 }
84     #endif