ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Collections.h
Revision: 1.18
Committed: Tue Jul 29 12:29:47 2008 UTC (16 years, 9 months ago) by bendavid
Content type: text/plain
Branch: MAIN
Changes since 1.17: +5 -2 lines
Log Message:
Revamped implementation of decay tree classes, started to remove use of Vertex and FitVertex to prepare for removal of these classes

File Contents

# User Rev Content
1 paus 1.8 //--------------------------------------------------------------------------------------------------
2 bendavid 1.18 // $Id: Collections.h,v 1.17 2008/07/29 10:38:47 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 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     #include "MitAna/DataCont/interface/Vector.h"
19    
20 loizides 1.4 #include "MitAna/DataTree/interface/DataObject.h"
21     #include "MitAna/DataTree/interface/Track.h"
22 loizides 1.1 #include "MitAna/DataTree/interface/Particle.h"
23 bendavid 1.15 #include "MitAna/DataTree/interface/ChargedParticle.h"
24 loizides 1.4 #include "MitAna/DataTree/interface/Muon.h"
25 bendavid 1.5 #include "MitAna/DataTree/interface/Electron.h"
26 loizides 1.12 #include "MitAna/DataTree/interface/Jet.h"
27     #include "MitAna/DataTree/interface/Met.h"
28 loizides 1.10 #include "MitAna/DataTree/interface/CompositeParticle.h"
29 bendavid 1.14 #include "MitAna/DataTree/interface/MCParticle.h"
30 loizides 1.10 #include "MitAna/DataTree/interface/DecayParticle.h"
31     #include "MitAna/DataTree/interface/Photon.h"
32 paus 1.16 #include "MitAna/DataTree/interface/Conversion.h"
33     #include "MitAna/DataTree/interface/BasePart.h"
34     #include "MitAna/DataTree/interface/DecayPart.h"
35     #include "MitAna/DataTree/interface/StablePart.h"
36 bendavid 1.15 #include "MitAna/DataTree/interface/StableParticle.h"
37 bendavid 1.18 #include "MitAna/DataTree/interface/StableDaughter.h"
38 loizides 1.3
39 loizides 1.2 namespace mithep
40     {
41 loizides 1.10 typedef Collection<DataObject> DataObjectCol;
42     typedef Collection<Track> TrackCol;
43     typedef Collection<Particle> ParticleCol;
44 bendavid 1.15 typedef Collection<ChargedParticle> ChargedParticleCol;
45 loizides 1.10 typedef Collection<Muon> MuonCol;
46     typedef Collection<Electron> ElectronCol;
47 loizides 1.12 typedef Collection<Jet> JetCol;
48     typedef Collection<Met> MetCol;
49 loizides 1.10 typedef Collection<CompositeParticle> CompositeParticleCol;
50 bendavid 1.14 typedef Collection<MCParticle> MCParticleCol;
51 loizides 1.10 typedef Collection<DecayParticle> DecayParticleCol;
52 bendavid 1.11 typedef Collection<Photon> PhotonCol;
53     typedef Collection<Conversion> ConversionCol;
54 bendavid 1.18 typedef Collection<StableParticle> StableParticleCol;
55     typedef Collection<StableDaughter> StableDaughterCol;
56 loizides 1.10
57 paus 1.16 typedef Collection<BasePart> BasePartCol;
58    
59 loizides 1.10 typedef Array<DataObject> DataObjectArr;
60     typedef Array<Track> TrackArr;
61 paus 1.16 typedef Array<Conversion> ConversionArr;
62 loizides 1.10 typedef Array<Muon> MuonArr;
63     typedef Array<Electron> ElectronArr;
64 loizides 1.12 typedef Array<Jet> JetArr;
65     typedef Array<Met> MetArr;
66 bendavid 1.14 typedef Array<MCParticle> MCParticleArr;
67 loizides 1.10 typedef Array<DecayParticle> DecayParticleArr;
68 bendavid 1.11 typedef Array<Photon> PhotonArr;
69 paus 1.16 typedef ObjArray<BasePart> BasePartObjArr;
70     typedef ObjArray<DecayPart> DecayPartObjArr;
71     typedef ObjArray<StablePart> StablePartObjArr;
72     typedef Array<Conversion> StableParticleArr;
73 bendavid 1.18 typedef Array<Conversion> StableDaughterArr;
74 bendavid 1.11 typedef Array<Conversion> ConversionArr;
75 loizides 1.7 }
76     #endif