ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Collections.h
Revision: 1.5
Committed: Thu Jun 5 16:03:35 2008 UTC (16 years, 11 months ago) by bendavid
Content type: text/plain
Branch: MAIN
Changes since 1.4: +3 -1 lines
Log Message:
added electron class, updated lepton class, added basic functionality for tracks, muons

File Contents

# User Rev Content
1 bendavid 1.5 // $Id: Collections.h,v 1.4 2008/06/04 09:08:36 loizides 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 loizides 1.4 typedef Collection<DataObject> DataObjectCol;
29     typedef Collection<Track> TrackCol;
30     typedef Collection<Particle> ParticleCol;
31     typedef Collection<GenParticle> GenParticleCol;
32     typedef Collection<Lepton> LeptonCol;
33     typedef Collection<Muon> MuonCol;
34 bendavid 1.5 typedef Collection<Electron> ElectronCol;
35 loizides 1.1 } /*namespace mithep*/
36    
37     #endif /*DATATREE_COLLECTIONS_H*/