ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitEdm/DataFormats/interface/BasePartFwd.h
Revision: 1.7
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_008pre2, Mit_008pre1, Mit_006b, Mit_006a, Mit_006, Mit_005, Mit_004
Changes since 1.6: +3 -3 lines
Log Message:
Cleanup

File Contents

# User Rev Content
1 bendavid 1.1 //--------------------------------------------------------------------------------------------------
2 loizides 1.7 // $Id: BasePartFwd.h,v 1.6 2008/09/24 09:47:22 bendavid Exp $
3 bendavid 1.1 //
4     // BasePartFwd
5     //
6     // Edm reference typedefs for BasePart
7     //
8 loizides 1.4 // Authors: J.Bendavid
9 bendavid 1.1 //--------------------------------------------------------------------------------------------------
10    
11 loizides 1.7 #ifndef MITEDM_DATAFORMATS_BASEPARTFWD_H
12     #define MITEDM_DATAFORMATS_BASEPARTFWD_H
13 bendavid 1.1
14     #include <vector>
15 bendavid 1.5 #include "DataFormats/Common/interface/Ptr.h"
16     #include "DataFormats/Common/interface/PtrVector.h"
17 bendavid 1.1
18     namespace mitedm {
19     class BasePart;
20 bendavid 1.5 typedef edm::Ptr<mitedm::BasePart> BasePartPtr;
21 bendavid 1.6 typedef std::vector<BasePartPtr> BasePartPtrVector;
22 bendavid 1.1 }
23     #endif