1 |
loizides |
1.7 |
// $Id: Collections.h,v 1.6 2008/06/09 11:47:03 paus Exp $
|
2 |
loizides |
1.1 |
|
3 |
|
|
#ifndef DATATREE_COLLECTIONS_H
|
4 |
|
|
#define DATATREE_COLLECTIONS_H
|
5 |
|
|
|
6 |
|
|
#include "MitAna/DataTree/interface/Collection.h"
|
7 |
|
|
#include "MitAna/DataTree/interface/Vector.h"
|
8 |
loizides |
1.4 |
#include "MitAna/DataTree/interface/DataObject.h"
|
9 |
|
|
#include "MitAna/DataTree/interface/Track.h"
|
10 |
loizides |
1.1 |
#include "MitAna/DataTree/interface/Particle.h"
|
11 |
loizides |
1.4 |
#include "MitAna/DataTree/interface/GenParticle.h"
|
12 |
|
|
#include "MitAna/DataTree/interface/Lepton.h"
|
13 |
|
|
#include "MitAna/DataTree/interface/Muon.h"
|
14 |
bendavid |
1.5 |
#include "MitAna/DataTree/interface/Electron.h"
|
15 |
loizides |
1.1 |
|
16 |
loizides |
1.3 |
//--------------------------------------------------------------------------------------------------
|
17 |
|
|
//
|
18 |
|
|
// Collections
|
19 |
|
|
//
|
20 |
|
|
// This header file defines the standard types for the collections we want to use.
|
21 |
|
|
//
|
22 |
|
|
// Authors: C.Loizides
|
23 |
|
|
//
|
24 |
|
|
//--------------------------------------------------------------------------------------------------
|
25 |
|
|
|
26 |
loizides |
1.2 |
namespace mithep
|
27 |
|
|
{
|
28 |
paus |
1.6 |
|
29 |
loizides |
1.4 |
typedef Collection<DataObject> DataObjectCol;
|
30 |
|
|
typedef Collection<Track> TrackCol;
|
31 |
|
|
typedef Collection<Particle> ParticleCol;
|
32 |
|
|
typedef Collection<GenParticle> GenParticleCol;
|
33 |
|
|
typedef Collection<Lepton> LeptonCol;
|
34 |
|
|
typedef Collection<Muon> MuonCol;
|
35 |
bendavid |
1.5 |
typedef Collection<Electron> ElectronCol;
|
36 |
loizides |
1.7 |
}
|
37 |
|
|
#endif
|