ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitEdm/DataFormats/interface/Collections.h
Revision: 1.1
Committed: Sat Sep 27 05:48:24 2008 UTC (16 years, 7 months ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_009a, Mit_009, Mit_008, Mit_008pre2, Mit_008pre1, Mit_006b, Mit_006a, Mit_006, Mit_005, Mit_004
Log Message:
Cleanup

File Contents

# User Rev Content
1 loizides 1.1 //--------------------------------------------------------------------------------------------------
2     // $Id: CollectionsEdm.h,v 1.3 2008/07/31 13:29:35 bendavid Exp $
3     //
4     // Collections
5     //
6     // This header file defines the standard types for the collections we want to use.
7     //
8     // Authors: C.Paus
9     //--------------------------------------------------------------------------------------------------
10    
11     #ifndef MITEDM_DATAFORMATS_COLLECTIONS_H
12     #define MITEDM_DATAFORMATS_COLLECTIONS_H
13    
14     #include <vector>
15     #include "MitEdm/DataFormats/interface/BasePart.h"
16     #include "MitEdm/DataFormats/interface/StablePart.h"
17     #include "MitEdm/DataFormats/interface/DecayPart.h"
18    
19     namespace mitedm
20     {
21     typedef std::vector<BasePart*> PartColl;
22     typedef std::vector<StablePart> StablePartCol;
23     typedef std::vector<DecayPart> DecayPartCol;
24     }
25     #endif