ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitPhysics/Init/interface/ModNames.h
Revision: 1.4
Committed: Fri Dec 12 16:04:04 2008 UTC (16 years, 4 months ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_008pre1, Mit_006b, Mit_006a
Changes since 1.3: +2 -1 lines
Log Message:
Added name for clean met, even if not really used yet.

File Contents

# User Rev Content
1 loizides 1.1 //--------------------------------------------------------------------------------------------------
2 loizides 1.4 // $Id: ModNames.h,v 1.3 2008/12/10 08:49:11 loizides Exp $
3 loizides 1.1 //
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 MITPHYSICS_INIT_MODNAMES_H
13     #define MITPHYSICS_INIT_MODNAMES_H
14    
15     #include "MitAna/DataTree/interface/Names.h"
16    
17     namespace mithep
18     {
19     class ModNames
20     {
21     public:
22 loizides 1.4 static const char *gkCleanCaloMetName;
23 loizides 1.1 static const char *gkCleanElectronsName;
24     static const char *gkCleanMuonsName;
25     static const char *gkCleanPhotonsName;
26     static const char *gkCleanTausName;
27     static const char *gkCleanJetsName;
28     static const char *gkCleanFwdJetsName;
29     static const char *gkCleanNoFwdJetsName;
30 loizides 1.3 static const char *gkGoodElectronsName;
31     static const char *gkGoodMuonsName;
32     static const char *gkGoodPhotonsName;
33     static const char *gkGoodTausName;
34     static const char *gkGoodJetsName;
35 loizides 1.1 static const char *gkMCLeptonsName;
36     static const char *gkMCAllLeptonsName;
37     static const char *gkMCTausName;
38     static const char *gkMCNeutrinosName;
39     static const char *gkMCQuarksName;
40     static const char *gkMCqqHsName;
41     static const char *gkMCBosonsName;
42 ceballos 1.2 static const char *gkMCPhotonsName;
43 loizides 1.3 static const char *gkMergedLeptonsName;
44 loizides 1.1 };
45     }
46     #endif