1 |
// $Id: Names.h,v 1.2 2008/06/03 09:51:21 loizides Exp $
|
2 |
|
3 |
#ifndef DATATREE_NAMES_H
|
4 |
#define DATATREE_NAMES_H
|
5 |
|
6 |
#include "MitAna/DataTree/interface/Types.h"
|
7 |
|
8 |
//--------------------------------------------------------------------------------------------------
|
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 |
namespace mithep
|
20 |
{
|
21 |
class Names
|
22 |
{
|
23 |
public:
|
24 |
static const char *gkMitTreeName;
|
25 |
static const char *gkGenPartBrn;
|
26 |
static const char *gkMuonBrn;
|
27 |
};
|
28 |
|
29 |
} /*namespace mithep*/
|
30 |
|
31 |
#endif /*DATATREE_NAMES_H*/
|