1 |
paus |
1.7 |
//--------------------------------------------------------------------------------------------------
|
2 |
sixie |
1.22 |
// $Id: Names.h,v 1.21 2008/11/05 14:05:16 ceballos 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 |
loizides |
1.17 |
#ifndef MITANA_DATATREE_NAMES_H
|
13 |
|
|
#define MITANA_DATATREE_NAMES_H
|
14 |
paus |
1.7 |
|
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 |
loizides |
1.18 |
static const char *gkL1BitBrn;
|
25 |
|
|
static const char *gkL1ObjBrn;
|
26 |
|
|
static const char *gkHltBitBrn;
|
27 |
|
|
static const char *gkHltObjBrn;
|
28 |
loizides |
1.15 |
static const char *gkMCEvtInfoBrn;
|
29 |
bendavid |
1.4 |
static const char *gkTrackBrn;
|
30 |
sixie |
1.14 |
static const char *gkBarrelBasicClusterBrn;
|
31 |
|
|
static const char *gkBarrelSuperClusterBrn;
|
32 |
|
|
static const char *gkEndcapBasicClusterBrn;
|
33 |
|
|
static const char *gkEndcapSuperClusterBrn;
|
34 |
sixie |
1.16 |
static const char *gkCaloTowerBrn;
|
35 |
loizides |
1.3 |
static const char *gkMuonBrn;
|
36 |
bendavid |
1.4 |
static const char *gkElectronBrn;
|
37 |
loizides |
1.12 |
static const char *gkCaloJetBrn;
|
38 |
sixie |
1.19 |
static const char *gkSC5JetBrn;
|
39 |
sixie |
1.22 |
static const char *gkIC5GenJetBrn;
|
40 |
|
|
static const char *gkSC5GenJetBrn;
|
41 |
loizides |
1.12 |
static const char *gkCaloMetBrn;
|
42 |
loizides |
1.15 |
static const char *gkMCPartBrn;
|
43 |
loizides |
1.11 |
static const char *gkPhotonBrn;
|
44 |
loizides |
1.9 |
|
45 |
|
|
static const char *gkRunTreeName;
|
46 |
|
|
static const char *gkRunInfoBrn;
|
47 |
loizides |
1.10 |
|
48 |
|
|
static const char *gkLATreeName;
|
49 |
|
|
static const char *gkLAHeaderBrn;
|
50 |
loizides |
1.18 |
|
51 |
|
|
static const char *gkHltTreeName;
|
52 |
|
|
static const char *gkHltTableBrn;
|
53 |
|
|
static const char *gkHltLabelBrn;
|
54 |
|
|
|
55 |
|
|
static const char *gkL1TreeName;
|
56 |
|
|
static const char *gkL1TableBrn;
|
57 |
sixie |
1.19 |
|
58 |
|
|
static const char *gkGoodElectronsName;
|
59 |
|
|
static const char *gkGoodMuonsName;
|
60 |
|
|
static const char *gkGoodPhotonsName;
|
61 |
|
|
static const char *gkGoodTausName;
|
62 |
|
|
static const char *gkGoodJetsName;
|
63 |
|
|
static const char *gkCleanElectronsName;
|
64 |
|
|
static const char *gkCleanMuonsName;
|
65 |
|
|
static const char *gkCleanPhotonsName;
|
66 |
|
|
static const char *gkCleanTausName;
|
67 |
|
|
static const char *gkCleanJetsName;
|
68 |
ceballos |
1.20 |
static const char *gkCleanFwdJetsName;
|
69 |
|
|
static const char *gkCleanNoFwdJetsName;
|
70 |
|
|
static const char *gkMCLeptonsName;
|
71 |
ceballos |
1.21 |
static const char *gkMCAllLeptonsName;
|
72 |
ceballos |
1.20 |
static const char *gkMCTausName;
|
73 |
|
|
static const char *gkMCNeutrinosName;
|
74 |
|
|
static const char *gkMCQuarksName;
|
75 |
|
|
static const char *gkMCqqHsName;
|
76 |
|
|
static const char *gkMCBosonsName;
|
77 |
sixie |
1.19 |
|
78 |
loizides |
1.1 |
};
|
79 |
loizides |
1.5 |
}
|
80 |
|
|
#endif
|