ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitPhysics/Init/interface/ModNames.h
Revision: 1.2
Committed: Mon Dec 1 11:36:35 2008 UTC (16 years, 5 months ago) by ceballos
Content type: text/plain
Branch: MAIN
Changes since 1.1: +2 -1 lines
Log Message:
added MCPhotons info, followed all computing rules

File Contents

# Content
1 //--------------------------------------------------------------------------------------------------
2 // $Id: ModNames.h,v 1.1 2008/11/27 16:28:34 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 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 static const char *gkGoodElectronsName;
23 static const char *gkGoodMuonsName;
24 static const char *gkGoodPhotonsName;
25 static const char *gkGoodTausName;
26 static const char *gkGoodJetsName;
27 static const char *gkCleanElectronsName;
28 static const char *gkCleanMuonsName;
29 static const char *gkCleanPhotonsName;
30 static const char *gkCleanTausName;
31 static const char *gkCleanJetsName;
32 static const char *gkCleanFwdJetsName;
33 static const char *gkCleanNoFwdJetsName;
34 static const char *gkMCLeptonsName;
35 static const char *gkMCAllLeptonsName;
36 static const char *gkMCTausName;
37 static const char *gkMCNeutrinosName;
38 static const char *gkMCQuarksName;
39 static const char *gkMCqqHsName;
40 static const char *gkMCBosonsName;
41 static const char *gkMCPhotonsName;
42 };
43 }
44 #endif