BOSS 7.0.9
BESIII Offline Software System
Loading...
Searching...
No Matches
bak-BesEvtGen-00-04-08/src/EvtGen/EvtGenModels/EvtAngSamX.cc
Go to the documentation of this file.
1//--------------------------------------------------------------------------
2//
3// Environment:
4// This software is part of models developed at BES collaboration
5// based on the EvtGen framework. If you use all or part
6// of it, please give an appropriate acknowledgement.
7//
8// Copyright Information: See EvtGen/BesCopyright
9// Copyright (A) 2006 Ping Rong-Gang @IHEP
10//
11// Module: EvtAngSam.cc
12//
13// Description: Routine to decay a particle to two bodies by sampling angular distribution in Lab
14// system.
15//
16// Modification history:
17//
18// Ping R.-G. December, 2006 Module created
19//
20//------------------------------------------------------------------------
21//
22#include "EvtGenBase/EvtPatches.hh"
23#include <stdlib.h>
24#include "EvtGenBase/EvtParticle.hh"
25#include "EvtGenBase/EvtGenKine.hh"
26#include "EvtGenBase/EvtPDL.hh"
27#include "EvtGenBase/EvtVector4C.hh"
28#include "EvtGenBase/EvtVector4R.hh"
29#include "EvtGenBase/EvtTensor4C.hh"
30#include "EvtGenBase/EvtDiracParticle.hh"
31#include "EvtGenBase/EvtScalarParticle.hh"
32#include "EvtGenBase/EvtVectorParticle.hh"
33#include "EvtGenBase/EvtTensorParticle.hh"
34#include "EvtGenBase/EvtPhotonParticle.hh"
35#include "EvtGenBase/EvtNeutrinoParticle.hh"
36#include "EvtGenBase/EvtStringParticle.hh"
37#include "EvtGenBase/EvtRaritaSchwingerParticle.hh"
38#include "EvtGenBase/EvtHighSpinParticle.hh"
39#include "EvtGenBase/EvtReport.hh"
40#include "EvtGenBase/EvtHelSys.hh"
41#include "EvtGenModels/EvtAngSamX.hh"
42#include "EvtGenBase/EvtRandom.hh"
43#include <string>
44using std::endl;
45
47
48void EvtAngSamX::getName(std::string& model_name){
49
50 model_name="AngSamX";
51
52}
53
55
56 return new EvtAngSamX;
57
58}
59
60
62
64// if ( parenttype == EvtSpinType::SCALAR ){
65// report(ERROR,"EvtGen")<<"Scalar decays with flat distribution"<<endl;
66// ::abort();
67// }
68 if(getNArg()>6 || getNArg()<2 ) {
69 report(ERROR,"EvtGen")<<" 2<= expected parameters <=6, but it is "<< getNArg()<<endl;
70 ::abort();
71 }
72}
74
75 noProbMax();
76
77}
78
80
81loop:
83
84 EvtParticle *v,*s1;
85 EvtVector4R pv,ps,ppr;
86
87 v =p->getDaug(0);
88 pv=v->getP4();
89 s1=p->getDaug(1);
90 ps=s1->getP4();
91 ppr=p->getP4();
92// Put phase space results into the daughters.
93 EvtHelSys angles(ppr,pv); //using helicity sys. angles
94 double theta =angles.getHelAng(1);
95
96// The angular form is: c0 + c2*cos^2(theta) + c4*cos^4(theta) + c6*cos^6(theta) + c8*cos^8(theta) + c10*cos^10(theta)
97// The parameters c0-c10 are specified by user in the decay list
98 int narg=getNArg();
99 double c0,c2,c4,c6,c8,c10;
100 c0=0;c2=0;c4=0;c6=0;c8=0;c10=0;
101 if(narg==2) {
102 c0=getArg(0);
103 c2=getArg(1);
104 } else if (narg==3){
105 c0=getArg(0);
106 c2=getArg(1);
107 c4=getArg(2);
108 } else if (narg==4){
109 c0=getArg(0);
110 c2=getArg(1);
111 c4=getArg(2);
112 c6=getArg(3);
113 } else if (narg==5){
114 c0=getArg(0);
115 c2=getArg(1);
116 c4=getArg(2);
117 c6=getArg(3);
118 c8=getArg(4);
119 } else if (narg==6){
120 c0=getArg(0);
121 c2=getArg(1);
122 c4=getArg(2);
123 c6=getArg(3);
124 c8=getArg(4);
125 c10=getArg(5);
126 }
127
128 double costheta= cos(theta);
129 double costheta2= costheta*costheta;
130 double costheta4= costheta2*costheta2;
131 double costheta6= costheta4*costheta2;
132 double costheta8= costheta6*costheta2;
133 double costheta10= costheta8*costheta2;
134
135 double amp1=(c0+c2*costheta2+c4*costheta4+c6*costheta6+c8*costheta8+c10*costheta10);
136 double a0,a2,a4,a6,a8,a10;
137 double ampflag;
138 if(c0<0) {a0=0;}else{a0=c0;}
139 if(c2<0) {a2=0;}else{a2=c2;}
140 if(c4<0) {a4=0;}else{a4=c4;}
141 if(c6<0) {a6=0;}else{a6=c6;}
142 if(c8<0) {a8=0;}else{a8=c8;}
143 if(c10<0) {a10=0;}else{a10=c10;}
144 ampflag=a0+a2+a4+a6+a8+a10;
145 if( ampflag<=0 ) {
146 report(ERROR,"EvtGen")<<" The maxium value of amplitude square should be positive, but it is "<< ampflag<<endl;
147 ::abort();
148 }
149 ampflag = amp1/ampflag;
150 double rd1=EvtRandom::Flat(0.0, 1.0);
151 if(rd1>=ampflag) goto loop;
152 return ;
153}
154
155
double cos(const BesAngle a)
Definition: BesAngle.h:213
**********Class see also m_nmax DOUBLE PRECISION m_amel DOUBLE PRECISION m_x2 DOUBLE PRECISION m_alfinv DOUBLE PRECISION m_Xenph INTEGER m_KeyWtm INTEGER m_idyfs DOUBLE PRECISION m_zini DOUBLE PRECISION m_q2 DOUBLE PRECISION m_Wt_KF DOUBLE PRECISION m_WtCut INTEGER m_KFfin *COMMON c_KarLud $ !Input CMS energy[GeV] $ !CMS energy after beam spread beam strahlung[GeV] $ !Beam energy spread[GeV] $ !z boost due to beam spread $ !electron beam mass *ff pair spectrum $ !minimum v
Definition: KarLud.h:35
ostream & report(Severity severity, const char *facility)
static EvtSpinType::spintype getSpinType(EvtId i)
double initializePhaseSpace(int numdaughter, EvtId *daughters, double poleSize=-1., int whichTwo1=0, int whichTwo2=1)
float costheta