ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Names.h
Revision: 1.46
Committed: Tue Feb 8 15:06:01 2011 UTC (14 years, 2 months ago) by mzanetti
Content type: text/plain
Branch: MAIN
Changes since 1.45: +2 -1 lines
Log Message:
add name for Pileup collection

File Contents

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