ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Names.h
Revision: 1.13
Committed: Fri Jul 25 11:32:45 2008 UTC (16 years, 9 months ago) by bendavid
Content type: text/plain
Branch: MAIN
Changes since 1.12: +2 -2 lines
Log Message:
Merged gen and sim particles into new MCParticle class

File Contents

# User Rev Content
1 paus 1.7 //--------------------------------------------------------------------------------------------------
2 bendavid 1.13 // $Id: Names.h,v 1.12 2008/07/07 16:02:25 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 paus 1.7 #ifndef DATATREE_NAMES_H
13     #define DATATREE_NAMES_H
14    
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 bendavid 1.13 static const char *gkMCPartBrn;
25 bendavid 1.4 static const char *gkTrackBrn;
26 loizides 1.3 static const char *gkMuonBrn;
27 bendavid 1.4 static const char *gkElectronBrn;
28 loizides 1.12 static const char *gkCaloJetBrn;
29     static const char *gkCaloMetBrn;
30 loizides 1.11 static const char *gkSimPartBrn;
31     static const char *gkPhotonBrn;
32 loizides 1.9
33     static const char *gkRunTreeName;
34     static const char *gkRunInfoBrn;
35 loizides 1.10
36     static const char *gkLATreeName;
37     static const char *gkLAHeaderBrn;
38 loizides 1.1 };
39 loizides 1.5 }
40     #endif
41 loizides 1.11