1 |
//--------------------------------------------------------------------------------------------------
|
2 |
// $Id: Names.h,v 1.11 2008/07/01 14:09:27 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 DATATREE_NAMES_H
|
13 |
#define DATATREE_NAMES_H
|
14 |
|
15 |
#include "MitAna/DataTree/interface/Types.h"
|
16 |
|
17 |
namespace mithep
|
18 |
{
|
19 |
class Names
|
20 |
{
|
21 |
public:
|
22 |
static const char *gkEvtTreeName;
|
23 |
static const char *gkEvtHeaderBrn;
|
24 |
static const char *gkGenPartBrn;
|
25 |
static const char *gkTrackBrn;
|
26 |
static const char *gkMuonBrn;
|
27 |
static const char *gkElectronBrn;
|
28 |
static const char *gkCaloJetBrn;
|
29 |
static const char *gkCaloMetBrn;
|
30 |
static const char *gkSimPartBrn;
|
31 |
static const char *gkPhotonBrn;
|
32 |
|
33 |
static const char *gkRunTreeName;
|
34 |
static const char *gkRunInfoBrn;
|
35 |
|
36 |
static const char *gkLATreeName;
|
37 |
static const char *gkLAHeaderBrn;
|
38 |
};
|
39 |
}
|
40 |
#endif
|
41 |
|