ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Names.h
Revision: 1.18
Committed: Wed Sep 17 04:20:47 2008 UTC (16 years, 7 months ago) by loizides
Content type: text/plain
Branch: MAIN
Changes since 1.17: +12 -1 lines
Log Message:
Add hlt and l1 names.

File Contents

# User Rev Content
1 paus 1.7 //--------------------------------------------------------------------------------------------------
2 loizides 1.18 // $Id: Names.h,v 1.17 2008/09/10 03:33:27 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     #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     static const char *gkCaloMetBrn;
39 loizides 1.15 static const char *gkMCPartBrn;
40 loizides 1.11 static const char *gkPhotonBrn;
41 loizides 1.9
42     static const char *gkRunTreeName;
43     static const char *gkRunInfoBrn;
44 loizides 1.10
45     static const char *gkLATreeName;
46     static const char *gkLAHeaderBrn;
47 loizides 1.18
48     static const char *gkHltTreeName;
49     static const char *gkHltTableBrn;
50     static const char *gkHltLabelBrn;
51    
52     static const char *gkL1TreeName;
53     static const char *gkL1TableBrn;
54 loizides 1.1 };
55 loizides 1.5 }
56     #endif