1 |
+ |
//-------------------------------------------------------------------------------------------------- |
2 |
|
// $Id$ |
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 |
12 |
> |
#ifndef MITANA_DATATREE_NAMES_H |
13 |
> |
#define MITANA_DATATREE_NAMES_H |
14 |
|
|
6 |
– |
#include "MitAna/DataTree/interface/Types.h" |
7 |
– |
|
15 |
|
namespace mithep |
16 |
|
{ |
17 |
|
class Names |
18 |
|
{ |
19 |
< |
static const char *mittree; |
20 |
< |
}; |
19 |
> |
public: |
20 |
> |
static const char *gkEvtTreeName; |
21 |
> |
static const char *gkEvtHeaderBrn; |
22 |
> |
static const char *gkL1BitBrn; |
23 |
> |
static const char *gkL1ObjBrn; |
24 |
> |
static const char *gkHltBitBrn; |
25 |
> |
static const char *gkHltObjBrn; |
26 |
> |
static const char *gkMCEvtInfoBrn; |
27 |
> |
static const char *gkTrackBrn; |
28 |
> |
static const char *gkBarrelBasicClusterBrn; |
29 |
> |
static const char *gkBarrelSuperClusterBrn; |
30 |
> |
static const char *gkEndcapBasicClusterBrn; |
31 |
> |
static const char *gkEndcapSuperClusterBrn; |
32 |
> |
static const char *gkCaloTowerBrn; |
33 |
> |
static const char *gkMuonBrn; |
34 |
> |
static const char *gkElectronBrn; |
35 |
> |
static const char *gkCaloJetBrn; |
36 |
> |
static const char *gkSC5JetBrn; |
37 |
> |
static const char *gkIC5GenJetBrn; |
38 |
> |
static const char *gkSC5GenJetBrn; |
39 |
> |
static const char *gkCaloMetBrn; |
40 |
> |
static const char *gkMCPartBrn; |
41 |
> |
static const char *gkPhotonBrn; |
42 |
> |
static const char *gkPFCandidatesBrn; |
43 |
> |
|
44 |
> |
static const char *gkRunTreeName; |
45 |
> |
static const char *gkRunInfoBrn; |
46 |
> |
|
47 |
> |
static const char *gkLATreeName; |
48 |
> |
static const char *gkLAHeaderBrn; |
49 |
|
|
50 |
< |
} /*namespace mithep*/ |
50 |
> |
static const char *gkHltTreeName; |
51 |
> |
static const char *gkHltTableBrn; |
52 |
> |
static const char *gkHltLabelBrn; |
53 |
|
|
54 |
< |
#endif /*DATATREE_NAMES_H*/ |
54 |
> |
static const char *gkL1TreeName; |
55 |
> |
static const char *gkL1TableBrn; |
56 |
> |
|
57 |
> |
static const char *gkAllEvtTreeName; |
58 |
> |
static const char *gkAllEvtHeaderBrn; |
59 |
> |
static const char *gkSkimmedHeaders; |
60 |
> |
|
61 |
> |
static const char *gkBranchTable; |
62 |
> |
}; |
63 |
> |
} |
64 |
> |
#endif |