ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Collections.h
Revision: 1.4
Committed: Wed Jun 4 09:08:36 2008 UTC (16 years, 11 months ago) by loizides
Content type: text/plain
Branch: MAIN
Changes since 1.3: +12 -3 lines
Log Message:
Added initial data inheritances. Objects are empty.

File Contents

# User Rev Content
1 loizides 1.4 // $Id: Collections.h,v 1.3 2008/06/03 10:04:27 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 loizides 1.1
15 loizides 1.3 //--------------------------------------------------------------------------------------------------
16     //
17     // Collections
18     //
19     // This header file defines the standard types for the collections we want to use.
20     //
21     // Authors: C.Loizides
22     //
23     //--------------------------------------------------------------------------------------------------
24    
25 loizides 1.2 namespace mithep
26     {
27 loizides 1.4 typedef Collection<DataObject> DataObjectCol;
28     typedef Collection<Track> TrackCol;
29     typedef Collection<Particle> ParticleCol;
30     typedef Collection<GenParticle> GenParticleCol;
31     typedef Collection<Lepton> LeptonCol;
32     typedef Collection<Muon> MuonCol;
33 loizides 1.1 } /*namespace mithep*/
34    
35     #endif /*DATATREE_COLLECTIONS_H*/