ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Names.h
Revision: 1.26
Committed: Wed Mar 11 18:12:16 2009 UTC (16 years, 1 month ago) by bendavid
Content type: text/plain
Branch: MAIN
Changes since 1.25: +2 -1 lines
Log Message:
Change common files to reflect PF and Jet changes

File Contents

# User Rev Content
1 paus 1.7 //--------------------------------------------------------------------------------------------------
2 bendavid 1.26 // $Id: Names.h,v 1.25 2008/12/09 17:47:00 loizides 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 loizides 1.6 static const char *gkEvtHeaderBrn;
22 loizides 1.18 static const char *gkL1BitBrn;
23     static const char *gkL1ObjBrn;
24     static const char *gkHltBitBrn;
25     static const char *gkHltObjBrn;
26 loizides 1.15 static const char *gkMCEvtInfoBrn;
27 bendavid 1.4 static const char *gkTrackBrn;
28 sixie 1.14 static const char *gkBarrelBasicClusterBrn;
29     static const char *gkBarrelSuperClusterBrn;
30     static const char *gkEndcapBasicClusterBrn;
31     static const char *gkEndcapSuperClusterBrn;
32 sixie 1.16 static const char *gkCaloTowerBrn;
33 loizides 1.3 static const char *gkMuonBrn;
34 bendavid 1.4 static const char *gkElectronBrn;
35 loizides 1.12 static const char *gkCaloJetBrn;
36 sixie 1.19 static const char *gkSC5JetBrn;
37 sixie 1.22 static const char *gkIC5GenJetBrn;
38     static const char *gkSC5GenJetBrn;
39 loizides 1.12 static const char *gkCaloMetBrn;
40 loizides 1.15 static const char *gkMCPartBrn;
41 loizides 1.11 static const char *gkPhotonBrn;
42 bendavid 1.26 static const char *gkPFCandidatesBrn;
43 loizides 1.9
44     static const char *gkRunTreeName;
45     static const char *gkRunInfoBrn;
46 loizides 1.10
47     static const char *gkLATreeName;
48     static const char *gkLAHeaderBrn;
49 loizides 1.18
50     static const char *gkHltTreeName;
51     static const char *gkHltTableBrn;
52     static const char *gkHltLabelBrn;
53    
54     static const char *gkL1TreeName;
55     static const char *gkL1TableBrn;
56 loizides 1.24
57     static const char *gkAllEvtTreeName;
58     static const char *gkAllEvtHeaderBrn;
59 loizides 1.1 };
60 loizides 1.5 }
61     #endif