ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Names.h
Revision: 1.20
Committed: Mon Oct 6 15:54:41 2008 UTC (16 years, 7 months ago) by ceballos
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_005
Changes since 1.19: +9 -1 lines
Log Message:
Adding MitAna/DataTree

File Contents

# User Rev Content
1 paus 1.7 //--------------------------------------------------------------------------------------------------
2 ceballos 1.20 // $Id: Names.h,v 1.19 2008/09/30 19:07:55 sixie 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     #include "MitAna/DataTree/interface/Types.h"
16 loizides 1.2
17 loizides 1.1 namespace mithep
18     {
19     class Names
20     {
21 loizides 1.2 public:
22 loizides 1.9 static const char *gkEvtTreeName;
23 loizides 1.6 static const char *gkEvtHeaderBrn;
24 loizides 1.18 static const char *gkL1BitBrn;
25     static const char *gkL1ObjBrn;
26     static const char *gkHltBitBrn;
27     static const char *gkHltObjBrn;
28 loizides 1.15 static const char *gkMCEvtInfoBrn;
29 bendavid 1.4 static const char *gkTrackBrn;
30 sixie 1.14 static const char *gkBarrelBasicClusterBrn;
31     static const char *gkBarrelSuperClusterBrn;
32     static const char *gkEndcapBasicClusterBrn;
33     static const char *gkEndcapSuperClusterBrn;
34 sixie 1.16 static const char *gkCaloTowerBrn;
35 loizides 1.3 static const char *gkMuonBrn;
36 bendavid 1.4 static const char *gkElectronBrn;
37 loizides 1.12 static const char *gkCaloJetBrn;
38 sixie 1.19 static const char *gkSC5JetBrn;
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 loizides 1.9
43     static const char *gkRunTreeName;
44     static const char *gkRunInfoBrn;
45 loizides 1.10
46     static const char *gkLATreeName;
47     static const char *gkLAHeaderBrn;
48 loizides 1.18
49     static const char *gkHltTreeName;
50     static const char *gkHltTableBrn;
51     static const char *gkHltLabelBrn;
52    
53     static const char *gkL1TreeName;
54     static const char *gkL1TableBrn;
55 sixie 1.19
56     static const char *gkGoodElectronsName;
57     static const char *gkGoodMuonsName;
58     static const char *gkGoodPhotonsName;
59     static const char *gkGoodTausName;
60     static const char *gkGoodJetsName;
61     static const char *gkCleanElectronsName;
62     static const char *gkCleanMuonsName;
63     static const char *gkCleanPhotonsName;
64     static const char *gkCleanTausName;
65     static const char *gkCleanJetsName;
66 ceballos 1.20 static const char *gkCleanFwdJetsName;
67     static const char *gkCleanNoFwdJetsName;
68     static const char *gkMCLeptonsName;
69     static const char *gkMCTausName;
70     static const char *gkMCNeutrinosName;
71     static const char *gkMCQuarksName;
72     static const char *gkMCqqHsName;
73     static const char *gkMCBosonsName;
74 sixie 1.19
75 loizides 1.1 };
76 loizides 1.5 }
77     #endif