Page Menu
Home
HEPForge
Search
Configure Global Search
Log In
Files
F19251904
EvtDalitzDecayInfo.hh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
EvtDalitzDecayInfo.hh
View Options
//--------------------------------------------------------------------------
//
// Environment:
// This software is part of the EvtGen package developed jointly
// for the BaBar and CLEO collaborations. If you use all or part
// of it, please give an appropriate acknowledgement.
//
// Copyright Information: See EvtGen/COPYRIGHT
// Copyright (C) 1998 Caltech, UCSB
//
// Module: EvtGen/EvtGenericDalitz.hh
//
// Description: Model to describe a generic dalitz decay
//
// Modification history:
//
// DCC 16 December, 2011 Module created
//
//------------------------------------------------------------------------
#ifndef EVTDALITZDECAYINFO_HH
#define EVTDALITZDECAYINFO_HH
#include
"EvtGenBase/EvtComplex.hh"
#include
"EvtGenBase/EvtId.hh"
#include
"EvtGenBase/EvtDalitzReso.hh"
#include
<vector>
class
EvtDalitzDecayInfo
{
public
:
EvtDalitzDecayInfo
(
EvtId
d1
,
EvtId
d2
,
EvtId
d3
)
:
_d1
(
d1
),
_d2
(
d2
),
_d3
(
d3
),
_probMax
(
0.
)
{}
~
EvtDalitzDecayInfo
()
{}
void
addResonance
(
EvtComplex
amp
,
EvtDalitzReso
res
)
{
_resonances
.
push_back
(
std
::
pair
<
EvtComplex
,
EvtDalitzReso
>
(
amp
,
res
));}
void
addResonance
(
std
::
pair
<
EvtComplex
,
EvtDalitzReso
>
res
)
{
_resonances
.
push_back
(
res
);}
void
setProbMax
(
double
probMax
)
{
_probMax
=
probMax
;}
const
std
::
vector
<
std
::
pair
<
EvtComplex
,
EvtDalitzReso
>
>&
getResonances
()
const
{
return
_resonances
;}
double
getProbMax
()
const
{
return
_probMax
;}
inline
const
EvtId
&
daughter1
()
const
{
return
_d1
;}
inline
const
EvtId
&
daughter2
()
const
{
return
_d2
;}
inline
const
EvtId
&
daughter3
()
const
{
return
_d3
;}
private
:
EvtId
_d1
,
_d2
,
_d3
;
std
::
vector
<
std
::
pair
<
EvtComplex
,
EvtDalitzReso
>
>
_resonances
;
double
_probMax
;
};
#endif
File Metadata
Details
Attached
Mime Type
text/x-c++
Expires
Tue, Sep 30, 6:12 AM (10 h, 16 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
6468570
Default Alt Text
EvtDalitzDecayInfo.hh (1 KB)
Attached To
Mode
rEVTGEN evtgen
Attached
Detach File
Event Timeline
Log In to Comment