1 |
paus |
1.7 |
//--------------------------------------------------------------------------------------------------
|
2 |
loizides |
1.12 |
// $Id: Names.h,v 1.11 2008/07/01 14:09:27 loizides 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 |
paus |
1.7 |
#ifndef DATATREE_NAMES_H
|
13 |
|
|
#define DATATREE_NAMES_H
|
14 |
|
|
|
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.3 |
static const char *gkGenPartBrn;
|
25 |
bendavid |
1.4 |
static const char *gkTrackBrn;
|
26 |
loizides |
1.3 |
static const char *gkMuonBrn;
|
27 |
bendavid |
1.4 |
static const char *gkElectronBrn;
|
28 |
loizides |
1.12 |
static const char *gkCaloJetBrn;
|
29 |
|
|
static const char *gkCaloMetBrn;
|
30 |
loizides |
1.11 |
static const char *gkSimPartBrn;
|
31 |
|
|
static const char *gkPhotonBrn;
|
32 |
loizides |
1.9 |
|
33 |
|
|
static const char *gkRunTreeName;
|
34 |
|
|
static const char *gkRunInfoBrn;
|
35 |
loizides |
1.10 |
|
36 |
|
|
static const char *gkLATreeName;
|
37 |
|
|
static const char *gkLAHeaderBrn;
|
38 |
loizides |
1.1 |
};
|
39 |
loizides |
1.5 |
}
|
40 |
|
|
#endif
|
41 |
loizides |
1.11 |
|