1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef FastSimDataFormats_NuclearInteractions_FSimVertexTypeFwd_h
#define FastSimDataFormats_NuclearInteractions_FSimVertexTypeFwd_h
#include <vector>
#include "DataFormats/Common/interface/Ref.h"
class FSimVertexType;
/// collection of FSimVertexType objects
typedef std::vector<FSimVertexType> FSimVertexTypeCollection;
/// persistent reference to a FSimVertexType objects
typedef edm::Ref<FSimVertexTypeCollection> FSimVertexTypeRef;
/// handle to a FSimVertexType collection
typedef edm::Handle<FSimVertexTypeCollection> FSimVertexTypeHandle;
#endif
|