BOSS
7.1.2
BESIII Offline Software System
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Functions
a
c
d
e
f
g
i
l
m
n
o
p
r
s
t
u
v
w
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
v
w
x
z
Typedefs
c
d
e
g
h
i
l
m
n
o
p
r
s
t
Enumerations
Enumerator
a
b
c
d
e
f
i
k
l
m
n
o
p
r
s
t
u
w
x
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
v
w
Enumerations
b
c
d
e
f
g
h
i
k
l
m
n
p
r
s
t
v
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Related Symbols
:
a
b
c
d
e
f
g
i
k
l
m
n
o
p
r
s
t
v
w
x
Files
File List
File Members
All
!
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
!
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
Variables
!
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
h
i
j
k
l
m
n
p
r
s
t
u
v
w
z
Enumerations
Enumerator
a
b
c
d
e
f
g
h
i
k
m
n
o
p
r
s
t
u
w
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
▼
BOSS
Used Packages
Requirements
►
How to use the ERS package
Todo List
►
Namespaces
►
Classes
▼
Files
▼
File List
▼
7.1.2
►
Analysis
►
BesCxxPolicy
►
BesExamples
►
BesPolicy
►
Calibration
►
Control
►
Database
►
DetectorDescription
►
DistBoss
►
DQA
►
Emc
►
Event
►
EventDisplay
►
EventFilter
►
EvtPreSelect
►
External
▼
Generator
►
Babayaga
►
BabayagaNLO
►
BesBdkRc
►
BesEvtGen
►
BesGenInterface
►
BesGenModule
►
BesTwogam
►
Bhlumi
►
Bhwide
►
CosmicGenerator
►
Eepipi
►
EeTo4e
►
EeToeeV
►
Ekhara
►
GenAnalysisTools
►
GeneratorModule
▼
GeneratorObject
▼
GeneratorObject-00-01-05
►
dict
▼
GeneratorObject
►
HepMcParticleLink.h
►
McEventCollection.h
McEventDict.h
►
McGenEvent.h
►
src
►
GeneratorUtil
►
KKMC
►
McEventSelector
►
Mcgpj
►
Phokhara
►
SingleParticleGun
►
InstallArea
►
LumTauAlg
►
MagneticField
►
Mdc
►
Muc
►
OfflineEvtFilter
►
Reconstruction
►
RootPolicy
►
Simulation
►
Tof
►
Trigger
►
Utilities
►
Validation
►
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
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
25
class
McEventCollection
:
public
DataVector<HepMC::GenEvent>
26
{
27
public
:
28
McEventCollection
(
void
);
29
~McEventCollection
(
void
);
30
};
25
class
McEventCollection
:
public
DataVector<HepMC::GenEvent> {
…
};
31
32
inline
33
McEventCollection::McEventCollection
(
void
)
34
: DataVector<
HepMC
::GenEvent> ()
35
{}
33
McEventCollection::McEventCollection
(
void
) {
…
}
36
37
inline
38
McEventCollection::~McEventCollection
(
void
)
39
{}
38
McEventCollection::~McEventCollection
(
void
) {
…
}
40
41
CLASS_DEF
(
McEventCollection
, 133273, 1)
42
43
#endif
CLASS_DEF
CLASS_DEF(std::vector< std::string >, 10123, 1)
McEventCollection
Definition
McEventCollection.h:26
McEventCollection::~McEventCollection
~McEventCollection(void)
Definition
McEventCollection.h:38
McEventCollection::McEventCollection
McEventCollection(void)
Definition
McEventCollection.h:33
HepMC
Definition
GenIMCselector.h:12
7.1.2
Generator
GeneratorObject
GeneratorObject-00-01-05
GeneratorObject
McEventCollection.h
Generated by
1.12.0