1 |
loizides |
1.6 |
// $Id: Names.h,v 1.5 2008/06/11 13:48:37 loizides Exp $
|
2 |
loizides |
1.1 |
|
3 |
|
|
#ifndef DATATREE_NAMES_H
|
4 |
|
|
#define DATATREE_NAMES_H
|
5 |
|
|
|
6 |
|
|
#include "MitAna/DataTree/interface/Types.h"
|
7 |
|
|
|
8 |
loizides |
1.2 |
//--------------------------------------------------------------------------------------------------
|
9 |
|
|
//
|
10 |
|
|
// Names
|
11 |
|
|
//
|
12 |
|
|
// This class defines the standard names for branches,
|
13 |
|
|
// collections and what else we will standardize.
|
14 |
|
|
//
|
15 |
|
|
// Authors: C.Loizides
|
16 |
|
|
//
|
17 |
|
|
//--------------------------------------------------------------------------------------------------
|
18 |
|
|
|
19 |
loizides |
1.1 |
namespace mithep
|
20 |
|
|
{
|
21 |
|
|
class Names
|
22 |
|
|
{
|
23 |
loizides |
1.2 |
public:
|
24 |
loizides |
1.3 |
static const char *gkMitTreeName;
|
25 |
loizides |
1.6 |
static const char *gkEvtHeaderBrn;
|
26 |
loizides |
1.3 |
static const char *gkGenPartBrn;
|
27 |
bendavid |
1.4 |
static const char *gkTrackBrn;
|
28 |
loizides |
1.3 |
static const char *gkMuonBrn;
|
29 |
bendavid |
1.4 |
static const char *gkElectronBrn;
|
30 |
loizides |
1.1 |
};
|
31 |
loizides |
1.5 |
}
|
32 |
|
|
#endif
|