ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Names.h
Revision: 1.4
Committed: Thu Jun 5 16:03:35 2008 UTC (16 years, 11 months ago) by bendavid
Content type: text/plain
Branch: MAIN
Changes since 1.3: +3 -1 lines
Log Message:
added electron class, updated lepton class, added basic functionality for tracks, muons

File Contents

# User Rev Content
1 bendavid 1.4 // $Id: Names.h,v 1.3 2008/06/05 07:53:21 loizides Exp $
2 loizides 1.1
3     #ifndef DATATREE_NAMES_H
4     #define DATATREE_NAMES_H
5    
6     #include "MitAna/DataTree/interface/Types.h"
7    
8 loizides 1.2 //--------------------------------------------------------------------------------------------------
9     //
10     // Names
11     //
12     // This class defines the standard names for branches,
13     // collections and what else we will standardize.
14     //
15     // Authors: C.Loizides
16     //
17     //--------------------------------------------------------------------------------------------------
18    
19 loizides 1.1 namespace mithep
20     {
21     class Names
22     {
23 loizides 1.2 public:
24 loizides 1.3 static const char *gkMitTreeName;
25     static const char *gkGenPartBrn;
26 bendavid 1.4 static const char *gkTrackBrn;
27 loizides 1.3 static const char *gkMuonBrn;
28 bendavid 1.4 static const char *gkElectronBrn;
29 loizides 1.1 };
30    
31     } /*namespace mithep*/
32    
33     #endif /*DATATREE_NAMES_H*/