1 |
paus |
1.8 |
//--------------------------------------------------------------------------------------------------
|
2 |
bendavid |
1.13 |
// $Id: Collections.h,v 1.12 2008/07/07 16:02:25 loizides 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 |
|
|
#ifndef DATATREE_COLLECTIONS_H
|
12 |
|
|
#define DATATREE_COLLECTIONS_H
|
13 |
|
|
|
14 |
|
|
#include "MitAna/DataTree/interface/Collection.h"
|
15 |
loizides |
1.10 |
#include "MitAna/DataTree/interface/Array.h"
|
16 |
loizides |
1.4 |
#include "MitAna/DataTree/interface/DataObject.h"
|
17 |
|
|
#include "MitAna/DataTree/interface/Track.h"
|
18 |
loizides |
1.1 |
#include "MitAna/DataTree/interface/Particle.h"
|
19 |
loizides |
1.4 |
#include "MitAna/DataTree/interface/Lepton.h"
|
20 |
|
|
#include "MitAna/DataTree/interface/Muon.h"
|
21 |
bendavid |
1.5 |
#include "MitAna/DataTree/interface/Electron.h"
|
22 |
loizides |
1.12 |
#include "MitAna/DataTree/interface/Jet.h"
|
23 |
|
|
#include "MitAna/DataTree/interface/Met.h"
|
24 |
loizides |
1.10 |
#include "MitAna/DataTree/interface/CompositeParticle.h"
|
25 |
|
|
#include "MitAna/DataTree/interface/GenParticle.h"
|
26 |
|
|
#include "MitAna/DataTree/interface/SimParticle.h"
|
27 |
|
|
#include "MitAna/DataTree/interface/DecayParticle.h"
|
28 |
|
|
#include "MitAna/DataTree/interface/Photon.h"
|
29 |
loizides |
1.3 |
|
30 |
loizides |
1.2 |
namespace mithep
|
31 |
|
|
{
|
32 |
loizides |
1.10 |
typedef Collection<DataObject> DataObjectCol;
|
33 |
|
|
typedef Collection<Track> TrackCol;
|
34 |
|
|
typedef Collection<Particle> ParticleCol;
|
35 |
|
|
typedef Collection<Lepton> LeptonCol;
|
36 |
|
|
typedef Collection<Muon> MuonCol;
|
37 |
|
|
typedef Collection<Electron> ElectronCol;
|
38 |
loizides |
1.12 |
typedef Collection<Jet> JetCol;
|
39 |
|
|
typedef Collection<Met> MetCol;
|
40 |
loizides |
1.10 |
typedef Collection<CompositeParticle> CompositeParticleCol;
|
41 |
|
|
typedef Collection<GenParticle> GenParticleCol;
|
42 |
|
|
typedef Collection<SimParticle> SimParticleCol;
|
43 |
|
|
typedef Collection<DecayParticle> DecayParticleCol;
|
44 |
bendavid |
1.11 |
typedef Collection<Photon> PhotonCol;
|
45 |
|
|
typedef Collection<Conversion> ConversionCol;
|
46 |
loizides |
1.10 |
|
47 |
|
|
typedef Array<DataObject> DataObjectArr;
|
48 |
|
|
typedef Array<Track> TrackArr;
|
49 |
|
|
typedef Array<Muon> MuonArr;
|
50 |
|
|
typedef Array<Electron> ElectronArr;
|
51 |
loizides |
1.12 |
typedef Array<Jet> JetArr;
|
52 |
|
|
typedef Array<Met> MetArr;
|
53 |
loizides |
1.10 |
typedef Array<GenParticle> GenParticleArr;
|
54 |
|
|
typedef Array<SimParticle> SimParticleArr;
|
55 |
|
|
typedef Array<DecayParticle> DecayParticleArr;
|
56 |
bendavid |
1.11 |
typedef Array<Photon> PhotonArr;
|
57 |
|
|
typedef Array<Conversion> ConversionArr;
|
58 |
loizides |
1.7 |
}
|
59 |
|
|
#endif
|