1 |
loizides |
1.1 |
//--------------------------------------------------------------------------------------------------
|
2 |
ceballos |
1.6 |
// $Id: ModNames.h,v 1.5 2009/03/12 16:00:45 bendavid 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 |
bendavid |
1.5 |
static const char *gkPubJetsName;
|
23 |
loizides |
1.4 |
static const char *gkCleanCaloMetName;
|
24 |
loizides |
1.1 |
static const char *gkCleanElectronsName;
|
25 |
|
|
static const char *gkCleanMuonsName;
|
26 |
|
|
static const char *gkCleanPhotonsName;
|
27 |
|
|
static const char *gkCleanTausName;
|
28 |
|
|
static const char *gkCleanJetsName;
|
29 |
|
|
static const char *gkCleanFwdJetsName;
|
30 |
|
|
static const char *gkCleanNoFwdJetsName;
|
31 |
loizides |
1.3 |
static const char *gkGoodElectronsName;
|
32 |
|
|
static const char *gkGoodMuonsName;
|
33 |
|
|
static const char *gkGoodPhotonsName;
|
34 |
|
|
static const char *gkGoodTausName;
|
35 |
|
|
static const char *gkGoodJetsName;
|
36 |
ceballos |
1.6 |
static const char *gkMCMETName;
|
37 |
loizides |
1.1 |
static const char *gkMCLeptonsName;
|
38 |
|
|
static const char *gkMCAllLeptonsName;
|
39 |
|
|
static const char *gkMCTausName;
|
40 |
|
|
static const char *gkMCNeutrinosName;
|
41 |
|
|
static const char *gkMCQuarksName;
|
42 |
|
|
static const char *gkMCqqHsName;
|
43 |
|
|
static const char *gkMCBosonsName;
|
44 |
ceballos |
1.2 |
static const char *gkMCPhotonsName;
|
45 |
loizides |
1.3 |
static const char *gkMergedLeptonsName;
|
46 |
loizides |
1.1 |
};
|
47 |
|
|
}
|
48 |
|
|
#endif
|