BOSS
7.0.4
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
b
c
d
e
f
g
i
l
m
n
o
p
r
s
t
u
v
w
z
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
w
x
z
Typedefs
b
c
d
e
g
h
i
l
m
n
o
p
r
s
t
v
Enumerations
_
e
f
g
h
i
l
m
o
p
r
s
t
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 Functions
:
a
b
c
d
e
f
g
i
k
l
m
n
o
p
r
s
t
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
g
h
i
j
k
l
m
n
p
q
r
s
t
u
v
w
z
Enumerations
d
e
g
h
p
r
s
t
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
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Loading...
Searching...
No Matches
EvtLambdac2pKpi.hh
Go to the documentation of this file.
1
//--------------------------------------------------------------------------
2
//
3
// Environment:
4
// This software is part of the EvtGen package developed jointly
5
// for the BaBar and CLEO collaborations. If you use all or part
6
// of it, please give an appropriate acknowledgement.
7
//
8
// Copyright Information: See EvtGen/COPYRIGHT
9
// Copyright (C) 1998 Caltech, UCSB
10
//
11
// Module: EvtGen/EvtLambdac2pKpi.hh
12
//
13
// Description:
14
//Class to handle generic phase space decays not done
15
//in other decay models.
16
//
17
// Modification history:
18
//
19
// DJL/RYD August 11, 1998 Module created
20
//
21
//------------------------------------------------------------------------
22
23
#ifndef EVTLAMBDAC2PKPI_HH
24
#define EVTLAMBDAC2PKPI_HH
25
26
#include "
EvtGenBase/EvtDecayIncoherent.hh
"
27
#include "
EvtGenBase/EvtVector4R.hh
"
28
#include <vector>
29
#include <iostream>
30
#include <fstream>
31
32
using namespace
std
;
33
34
class
EvtParticle
;
35
36
class
EvtLambdac2pKpi
:
public
EvtDecayIncoherent
{
37
38
public
:
39
40
EvtLambdac2pKpi
() {}
41
virtual
~EvtLambdac2pKpi
();
42
43
void
getName
(std::string& name);
44
45
EvtDecayBase
*
clone
();
46
47
void
initProbMax
();
48
49
void
init
();
50
51
void
decay
(
EvtParticle
*p);
52
53
private
:
54
std::string m_inputFileName;
55
ifstream m_inputFile;
56
int
nParticles;
57
int
idParticles[100];
58
double
pxParticle;
59
double
pyParticle;
60
double
pzParticle;
61
double
eParticle;
62
static
std::vector<std::vector<EvtVector4R> >Evt;
63
int
Ntot;
64
};
65
66
#endif
67
EvtDecayIncoherent.hh
EvtVector4R.hh
EvtDecayBase
Definition:
EvtDecayBase.hh:33
EvtDecayIncoherent
Definition:
EvtDecayIncoherent.hh:28
EvtLambdac2pKpi
Definition:
EvtLambdac2pKpi.hh:36
EvtLambdac2pKpi::decay
void decay(EvtParticle *p)
Definition:
EvtLambdac2pKpi.cc:82
EvtLambdac2pKpi::initProbMax
void initProbMax()
Definition:
EvtLambdac2pKpi.cc:76
EvtLambdac2pKpi::clone
EvtDecayBase * clone()
Definition:
EvtLambdac2pKpi.cc:33
EvtLambdac2pKpi::init
void init()
Definition:
EvtLambdac2pKpi.cc:40
EvtLambdac2pKpi::EvtLambdac2pKpi
EvtLambdac2pKpi()
Definition:
EvtLambdac2pKpi.hh:40
EvtLambdac2pKpi::~EvtLambdac2pKpi
virtual ~EvtLambdac2pKpi()
Definition:
EvtLambdac2pKpi.cc:25
EvtLambdac2pKpi::getName
void getName(std::string &name)
Definition:
EvtLambdac2pKpi.cc:27
EvtParticle
Definition:
EvtParticle.hh:42
std
Definition:
Event/RootEventData/RootEventData-00-03-80/RootEventData/RootEventData_rootcint.cxx:16
source
Generator
BesEvtGen
BesEvtGen-00-03-98
src
EvtGen
EvtGenModels
EvtLambdac2pKpi.hh
Generated by
1.9.6