ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Collections.h
Revision: 1.20
Committed: Fri Aug 8 11:16:09 2008 UTC (16 years, 8 months ago) by sixie
Content type: text/plain
Branch: MAIN
CVS Tags: MITHEP_2_0_x
Changes since 1.19: +11 -4 lines
Log Message:
Add BasicClusters and SuperClusters to Collections and related Names. Change the order of the dictionary definitions to accomodate them

File Contents

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