BOSS 7.0.6
BESIII Offline Software System
Loading...
Searching...
No Matches
McEventCollection.h
Go to the documentation of this file.
1#ifndef GENERATOROBJECTSMCEVENTCOLLECTION_H
2#define GENERATOROBJECTSMCEVENTCOLLECTION_H 1
3
4
5// --------------------------------------------------
6//
7// File: GeneratorObject/McEventCollection.h
8// Description:
9// This defines the McEventCollection, which is really juat an
10// ObjectVector of McEvent objects.
11//
12// AuthorList:
13// M. Shapiro: Initial Code March 2000
14// C. Leggett: added maps, inherits from ObjectVector 4/25/01
15// fixed for gcc Oct 26 2001: Ian Hinchliffe
16
17
18// #include "GeneratorObject/McEvent.h"
19#include "DataModel/DataVector.h"
20#include "CLIDSvc/CLASS_DEF.h"
21#include "CLHEP/HepMC/GenEvent.h"
22#include "CLHEP/HepMC/GenParticle.h"
23#include "CLHEP/HepMC/GenVertex.h"
24
25class McEventCollection : public DataVector<HepMC::GenEvent>
26{
27 public:
28 McEventCollection (void);
29 ~McEventCollection (void);
30};
31
32inline
34 : DataVector<HepMC::GenEvent> ()
35{}
36
37inline
39{}
40
42
43#endif
CLASS_DEF(std::vector< std::string >, 10123, 1)