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
|