ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Names.h
Revision: 1.12
Committed: Mon Jul 7 16:02:25 2008 UTC (16 years, 10 months ago) by loizides
Content type: text/plain
Branch: MAIN
Changes since 1.11: +3 -1 lines
Log Message:
Added Jet and Met. Content needs to be done.

File Contents

# Content
1 //--------------------------------------------------------------------------------------------------
2 // $Id: Names.h,v 1.11 2008/07/01 14:09:27 loizides Exp $
3 //
4 // Names
5 //
6 // This class defines the standard names for branches,
7 // collections and what else we will standardize.
8 //
9 // Authors: C.Loizides, C.Paus
10 //--------------------------------------------------------------------------------------------------
11
12 #ifndef DATATREE_NAMES_H
13 #define DATATREE_NAMES_H
14
15 #include "MitAna/DataTree/interface/Types.h"
16
17 namespace mithep
18 {
19 class Names
20 {
21 public:
22 static const char *gkEvtTreeName;
23 static const char *gkEvtHeaderBrn;
24 static const char *gkGenPartBrn;
25 static const char *gkTrackBrn;
26 static const char *gkMuonBrn;
27 static const char *gkElectronBrn;
28 static const char *gkCaloJetBrn;
29 static const char *gkCaloMetBrn;
30 static const char *gkSimPartBrn;
31 static const char *gkPhotonBrn;
32
33 static const char *gkRunTreeName;
34 static const char *gkRunInfoBrn;
35
36 static const char *gkLATreeName;
37 static const char *gkLAHeaderBrn;
38 };
39 }
40 #endif
41