BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtDecayIncoherent.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/EvtDecayIncoherent.hh
12//
13// Description:
14//
15// Modification history:
16//
17// DJL/RYD August 11, 1998 Module created
18//
19//------------------------------------------------------------------------
20
21#ifndef EvtDecayIncoherent_HH
22#define EvtDecayIncoherent_HH
23
24#include "EvtDecayBase.hh"
25#include "EvtParticle.hh"
26
28
29public:
30 void makeDecay( EvtParticle* p );
31
33
34 void setDaughterSpinDensity( int daughter ) {
35 spinDensitySet[daughter] = 1;
36 return;
37 }
38
39 int isDaughterSpinDensitySet( int daughter ) { return spinDensitySet[daughter]; }
40
41private:
42 int spinDensitySet[MAX_DAUG];
43};
44
45#endif
const int MAX_DAUG
void setDaughterSpinDensity(int daughter)
void makeDecay(EvtParticle *p)
int isDaughterSpinDensitySet(int daughter)