ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitEdm/DataFormats/interface/BasePartFwd.h
Revision: 1.5
Committed: Wed Sep 24 09:00:54 2008 UTC (16 years, 7 months ago) by bendavid
Content type: text/plain
Branch: MAIN
Changes since 1.4: +5 -4 lines
Log Message:
Switched DecayPart to use edm::Ptr and edm::PtrVector

File Contents

# User Rev Content
1 bendavid 1.1 //--------------------------------------------------------------------------------------------------
2 bendavid 1.5 // $Id: BasePartFwd.h,v 1.4 2008/08/29 00:27:21 loizides 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     #ifndef MITEDM_BASEPARTFWD_H
12     #define MITEDM_BASEPARTFWD_H
13    
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     typedef edm::PtrVector<mitedm::BasePart> BasePartPtrVector;
22 bendavid 1.1 }
23     #endif