1 |
paus |
1.8 |
//--------------------------------------------------------------------------------------------------
|
2 |
bendavid |
1.30 |
// $Id: Collections.h,v 1.29 2008/09/30 12:55:13 bendavid Exp $
|
3 |
paus |
1.8 |
//
|
4 |
|
|
// Collections
|
5 |
|
|
//
|
6 |
|
|
// This header file defines the standard types for the collections we want to use.
|
7 |
|
|
//
|
8 |
|
|
// Authors: C.Loizides
|
9 |
|
|
//--------------------------------------------------------------------------------------------------
|
10 |
loizides |
1.1 |
|
11 |
loizides |
1.22 |
#ifndef MITANA_DATATREE_COLLECTIONS_H
|
12 |
|
|
#define MITANA_DATATREE_COLLECTIONS_H
|
13 |
loizides |
1.1 |
|
14 |
loizides |
1.17 |
#include "MitAna/DataCont/interface/Collection.h"
|
15 |
|
|
#include "MitAna/DataCont/interface/Array.h"
|
16 |
|
|
#include "MitAna/DataCont/interface/ObjArray.h"
|
17 |
|
|
#include "MitAna/DataCont/interface/RefArray.h"
|
18 |
bendavid |
1.27 |
#include "MitAna/DataCont/interface/StackArray.h"
|
19 |
loizides |
1.17 |
#include "MitAna/DataCont/interface/Vector.h"
|
20 |
loizides |
1.28 |
#include "MitAna/DataTree/interface/Types.h"
|
21 |
loizides |
1.4 |
#include "MitAna/DataTree/interface/DataObject.h"
|
22 |
|
|
#include "MitAna/DataTree/interface/Track.h"
|
23 |
sixie |
1.20 |
#include "MitAna/DataTree/interface/BasicCluster.h"
|
24 |
|
|
#include "MitAna/DataTree/interface/SuperCluster.h"
|
25 |
sixie |
1.21 |
#include "MitAna/DataTree/interface/CaloTower.h"
|
26 |
loizides |
1.1 |
#include "MitAna/DataTree/interface/Particle.h"
|
27 |
bendavid |
1.15 |
#include "MitAna/DataTree/interface/ChargedParticle.h"
|
28 |
loizides |
1.4 |
#include "MitAna/DataTree/interface/Muon.h"
|
29 |
bendavid |
1.5 |
#include "MitAna/DataTree/interface/Electron.h"
|
30 |
loizides |
1.12 |
#include "MitAna/DataTree/interface/Jet.h"
|
31 |
sixie |
1.24 |
#include "MitAna/DataTree/interface/GenJet.h"
|
32 |
loizides |
1.12 |
#include "MitAna/DataTree/interface/Met.h"
|
33 |
loizides |
1.26 |
#include "MitAna/DataTree/interface/TriggerObject.h"
|
34 |
loizides |
1.10 |
#include "MitAna/DataTree/interface/CompositeParticle.h"
|
35 |
bendavid |
1.14 |
#include "MitAna/DataTree/interface/MCParticle.h"
|
36 |
bendavid |
1.29 |
#include "MitAna/DataTree/interface/StableData.h"
|
37 |
|
|
#include "MitAna/DataTree/interface/DecayData.h"
|
38 |
loizides |
1.10 |
#include "MitAna/DataTree/interface/DecayParticle.h"
|
39 |
sixie |
1.20 |
#include "MitAna/DataTree/interface/Conversion.h"
|
40 |
loizides |
1.10 |
#include "MitAna/DataTree/interface/Photon.h"
|
41 |
bendavid |
1.15 |
#include "MitAna/DataTree/interface/StableParticle.h"
|
42 |
bendavid |
1.18 |
#include "MitAna/DataTree/interface/StableDaughter.h"
|
43 |
bendavid |
1.29 |
#include "MitAna/DataTree/interface/Vertex.h"
|
44 |
loizides |
1.3 |
|
45 |
loizides |
1.2 |
namespace mithep
|
46 |
|
|
{
|
47 |
loizides |
1.28 |
typedef Collection<BitMask<1> > BitMask8Col;
|
48 |
|
|
typedef Collection<BitMask<2> > BitMask16Col;
|
49 |
|
|
typedef Collection<BitMask<4> > BitMask32Col;
|
50 |
bendavid |
1.30 |
typedef Collection<BitMask<6> > BitMask48Col;
|
51 |
loizides |
1.28 |
typedef Collection<BitMask<8> > BitMask64Col;
|
52 |
|
|
typedef Collection<BitMask<16> > BitMask128Col;
|
53 |
|
|
typedef Collection<BitMask<32> > BitMask256Col;
|
54 |
|
|
|
55 |
|
|
typedef Vector<BitMask<1> > BitMask8Vec;
|
56 |
|
|
typedef Vector<BitMask<2> > BitMask16Vec;
|
57 |
|
|
typedef Vector<BitMask<4> > BitMask32Vec;
|
58 |
bendavid |
1.30 |
typedef Vector<BitMask<6> > BitMask48Vec;
|
59 |
loizides |
1.28 |
typedef Vector<BitMask<8> > BitMask64Vec;
|
60 |
|
|
typedef Vector<BitMask<16> > BitMask128Vec;
|
61 |
|
|
typedef Vector<BitMask<32> > BitMask256Vec;
|
62 |
|
|
|
63 |
loizides |
1.10 |
typedef Collection<DataObject> DataObjectCol;
|
64 |
|
|
typedef Collection<Track> TrackCol;
|
65 |
sixie |
1.20 |
typedef Collection<BasicCluster> BasicClusterCol;
|
66 |
|
|
typedef Collection<SuperCluster> SuperClusterCol;
|
67 |
sixie |
1.21 |
typedef Collection<CaloTower> CaloTowerCol;
|
68 |
loizides |
1.10 |
typedef Collection<Particle> ParticleCol;
|
69 |
bendavid |
1.15 |
typedef Collection<ChargedParticle> ChargedParticleCol;
|
70 |
loizides |
1.10 |
typedef Collection<Muon> MuonCol;
|
71 |
|
|
typedef Collection<Electron> ElectronCol;
|
72 |
loizides |
1.12 |
typedef Collection<Jet> JetCol;
|
73 |
sixie |
1.24 |
typedef Collection<GenJet> GenJetCol;
|
74 |
loizides |
1.12 |
typedef Collection<Met> MetCol;
|
75 |
loizides |
1.26 |
typedef Collection<TriggerObjectRel> TriggerObjectRelCol;
|
76 |
|
|
typedef Collection<TriggerObjectBase> TriggerObjectBaseCol;
|
77 |
|
|
typedef Collection<TriggerObject> TriggerObjectCol;
|
78 |
loizides |
1.10 |
typedef Collection<CompositeParticle> CompositeParticleCol;
|
79 |
bendavid |
1.14 |
typedef Collection<MCParticle> MCParticleCol;
|
80 |
bendavid |
1.29 |
typedef Collection<StableData> StableDataCol;
|
81 |
|
|
typedef Collection<DecayData> DecayDataCol;
|
82 |
loizides |
1.10 |
typedef Collection<DecayParticle> DecayParticleCol;
|
83 |
sixie |
1.20 |
typedef Collection<Conversion> ConversionCol;
|
84 |
bendavid |
1.11 |
typedef Collection<Photon> PhotonCol;
|
85 |
bendavid |
1.18 |
typedef Collection<StableParticle> StableParticleCol;
|
86 |
|
|
typedef Collection<StableDaughter> StableDaughterCol;
|
87 |
bendavid |
1.29 |
typedef Collection<Vertex> VertexCol;
|
88 |
sixie |
1.20 |
|
89 |
loizides |
1.10 |
typedef Array<DataObject> DataObjectArr;
|
90 |
|
|
typedef Array<Track> TrackArr;
|
91 |
sixie |
1.20 |
typedef Array<BasicCluster> BasicClusterArr;
|
92 |
|
|
typedef Array<SuperCluster> SuperClusterArr;
|
93 |
sixie |
1.21 |
typedef Array<CaloTower> CaloTowerArr;
|
94 |
loizides |
1.19 |
typedef Array<ChargedParticle> ChargedParticleArr;
|
95 |
loizides |
1.10 |
typedef Array<Muon> MuonArr;
|
96 |
|
|
typedef Array<Electron> ElectronArr;
|
97 |
loizides |
1.12 |
typedef Array<Jet> JetArr;
|
98 |
sixie |
1.24 |
typedef Array<GenJet> GenJetArr;
|
99 |
loizides |
1.12 |
typedef Array<Met> MetArr;
|
100 |
loizides |
1.26 |
typedef Array<TriggerObjectRel> TriggerObjectRelArr;
|
101 |
|
|
typedef Array<TriggerObjectBase> TriggerObjectBaseArr;
|
102 |
|
|
typedef Array<TriggerObject> TriggerObjectArr;
|
103 |
bendavid |
1.14 |
typedef Array<MCParticle> MCParticleArr;
|
104 |
loizides |
1.19 |
typedef Array<CompositeParticle> CompositeParticleArr;
|
105 |
bendavid |
1.29 |
typedef Array<StableData> StableDataArr;
|
106 |
|
|
typedef Array<DecayData> DecayDataArr;
|
107 |
loizides |
1.10 |
typedef Array<DecayParticle> DecayParticleArr;
|
108 |
sixie |
1.20 |
typedef Array<Conversion> ConversionArr;
|
109 |
bendavid |
1.11 |
typedef Array<Photon> PhotonArr;
|
110 |
loizides |
1.19 |
typedef Array<StableParticle> StableParticleArr;
|
111 |
|
|
typedef Array<StableDaughter> StableDaughterArr;
|
112 |
bendavid |
1.29 |
typedef Array<Vertex> VertexArr;
|
113 |
loizides |
1.28 |
|
114 |
|
|
typedef ObjArray<DataObject> DataObjectOArr;
|
115 |
|
|
typedef ObjArray<Track> TrackOArr;
|
116 |
|
|
typedef ObjArray<BasicCluster> BasicClusterOArr;
|
117 |
|
|
typedef ObjArray<SuperCluster> SuperClusterOArr;
|
118 |
|
|
typedef ObjArray<CaloTower> CaloTowerOArr;
|
119 |
|
|
typedef ObjArray<ChargedParticle> ChargedParticleOArr;
|
120 |
|
|
typedef ObjArray<Muon> MuonOArr;
|
121 |
|
|
typedef ObjArray<Electron> ElectronOArr;
|
122 |
|
|
typedef ObjArray<Jet> JetOArr;
|
123 |
|
|
typedef ObjArray<GenJet> GenJetOArr;
|
124 |
|
|
typedef ObjArray<Met> MetOArr;
|
125 |
|
|
typedef ObjArray<TriggerObjectRel> TriggerObjectRelOArr;
|
126 |
|
|
typedef ObjArray<TriggerObjectBase> TriggerObjectBaseOArr;
|
127 |
|
|
typedef ObjArray<TriggerObject> TriggerObjectOArr;
|
128 |
|
|
typedef ObjArray<MCParticle> MCParticleOArr;
|
129 |
|
|
typedef ObjArray<CompositeParticle> CompositeParticleOArr;
|
130 |
|
|
typedef ObjArray<DecayParticle> DecayParticleOArr;
|
131 |
|
|
typedef ObjArray<Conversion> ConversionOArr;
|
132 |
|
|
typedef ObjArray<Photon> PhotonOArr;
|
133 |
|
|
typedef ObjArray<StableParticle> StableParticleOArr;
|
134 |
|
|
typedef ObjArray<StableDaughter> StableDaughterOArr;
|
135 |
bendavid |
1.29 |
typedef ObjArray<Vertex> VertexOArr;
|
136 |
loizides |
1.7 |
}
|
137 |
|
|
#endif
|