ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Names.h
Revision: 1.31
Committed: Fri Mar 20 09:37:17 2009 UTC (16 years, 1 month ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_008
Changes since 1.30: +3 -3 lines
Log Message:
Cleanup

File Contents

# User Rev Content
1 paus 1.7 //--------------------------------------------------------------------------------------------------
2 loizides 1.31 // $Id: Names.h,v 1.30 2009/03/19 23:09:36 bendavid 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     static const char *gkHltBitBrn;
32     static const char *gkHltObjBrn;
33 sixie 1.22 static const char *gkIC5GenJetBrn;
34 loizides 1.29 static const char *gkL1BitBrn;
35     static const char *gkL1ObjBrn;
36     static const char *gkMCEvtInfoBrn;
37 loizides 1.15 static const char *gkMCPartBrn;
38 loizides 1.29 static const char *gkMuonBrn;
39     static const char *gkPFCandidatesBrn;
40 loizides 1.31 static const char *gkPFTauBrn;
41 loizides 1.11 static const char *gkPhotonBrn;
42 loizides 1.29 static const char *gkSC5GenJetBrn;
43     static const char *gkSC5JetBrn;
44     static const char *gkTrackBrn;
45 loizides 1.9
46     static const char *gkRunTreeName;
47     static const char *gkRunInfoBrn;
48 loizides 1.10
49     static const char *gkLATreeName;
50     static const char *gkLAHeaderBrn;
51 loizides 1.18
52     static const char *gkHltTreeName;
53     static const char *gkHltTableBrn;
54     static const char *gkHltLabelBrn;
55    
56     static const char *gkL1TreeName;
57     static const char *gkL1TableBrn;
58 loizides 1.24
59     static const char *gkAllEvtTreeName;
60     static const char *gkAllEvtHeaderBrn;
61 loizides 1.27 static const char *gkSkimmedHeaders;
62 loizides 1.28
63     static const char *gkBranchTable;
64 loizides 1.1 };
65 loizides 1.5 }
66     #endif