BOSS 7.0.1
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtVVPIPI_WEIGHTED.cc
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: EvtVVSPwave.cc
12//
13// Description: Routine to decay vector-> vector pi pi where the
14// decay is S-wave dominated.
15//
16// Modification history:
17//
18// Jim Hunt June 4, 2008 Module Created
19//
20//------------------------------------------------------------------------
21//
23#include <stdlib.h>
26#include "EvtGenBase/EvtPDL.hh"
31#include <string>
32using std::endl;
33
35
36void EvtVVPIPI_WEIGHTED::getName(std::string& model_name){
37
38 model_name="VVPIPI_WEIGHTED";
39
40}
41
42
44
45 return new EvtVVPIPI_WEIGHTED;
46
47}
48
50
51 static EvtId PIP=EvtPDL::getId("pi+");
52 static EvtId PIM=EvtPDL::getId("pi-");
53 static EvtId PI0=EvtPDL::getId("pi0");
54
55 // check that there are 0 arguments
56 checkNArg(0);
57 checkNDaug(3);
58
61
62
63
64 if ((!(getDaug(1)==PIP&&getDaug(2)==PIM))&&
65 (!(getDaug(1)==PI0&&getDaug(2)==PI0))) {
66 report(ERROR,"EvtGen") << "EvtVVPIPI_WEIGHTED generator expected "
67 << " pi+ and pi- (or pi0 and pi0) "
68 << "as 2nd and 3rd daughter. "<<endl;
69 report(ERROR,"EvtGen") << "Will terminate execution!"<<endl;
70 ::abort();
71 }
72
73}
74
76 //Hard coded... should not be hard to calculate...
77 setProbMax(0.08* 1.13 );
78}
79
80double reweight_event(double pipi_mass)
81{
82 pipi_mass *= 1000.0;
83 return sqrt(
84 -3.6911336508223251 +
85 0.019119831948029617 * pipi_mass +
86 -1.8962883732377376e-05 * pipi_mass * pipi_mass
87 );
88}
89
91
93
94 EvtParticle *jpsi,*pi1,*pi2;
95
96 jpsi=psi_prime->getDaug(0);
97 pi1=psi_prime->getDaug(1);
98 pi2=psi_prime->getDaug(2);
99
100// Put phase space results into the daughters.
101
102 EvtVector4C ep0,ep1,ep2;
103
104 ep0=psi_prime->eps(0);
105 ep1=psi_prime->eps(1);
106 ep2=psi_prime->eps(2);
107
108 EvtVector4C e0,e1,e2;
109
110 e0 = jpsi->epsParent(0);
111 e1 = jpsi->epsParent(1);
112 e2 = jpsi->epsParent(2);
113
114 double mass2 = (pi1->getP4()+pi2->getP4()).mass2();
115
116 double fac = mass2-4*pi1->mass()*pi2->mass();
117
118 fac *= reweight_event(sqrt(mass2));
119
120 vertex(0,0,fac*(ep0*e0.conj()));
121 vertex(0,1,fac*(ep0*e1.conj()));
122 vertex(0,2,fac*(ep0*e2.conj()));
123
124 vertex(1,0,fac*(ep1*e0.conj()));
125 vertex(1,1,fac*(ep1*e1.conj()));
126 vertex(1,2,fac*(ep1*e2.conj()));
127
128 vertex(2,0,fac*(ep2*e0.conj()));
129 vertex(2,1,fac*(ep2*e1.conj()));
130 vertex(2,2,fac*(ep2*e2.conj()));
131
132 return ;
133
134}
135
Double_t e1
Double_t e2
ostream & report(Severity severity, const char *facility)
Definition: EvtReport.cc:36
@ ERROR
Definition: EvtReport.hh:49
double reweight_event(double pipi_mass)
void vertex(const EvtComplex &amp)
Definition: EvtDecayAmp.hh:37
void checkSpinDaughter(int d1, EvtSpinType::spintype sp)
void checkSpinParent(EvtSpinType::spintype sp)
void setProbMax(double prbmx)
void checkNDaug(int d1, int d2=-1)
EvtId * getDaugs()
Definition: EvtDecayBase.hh:65
void checkNArg(int a1, int a2=-1, int a3=-1, int a4=-1)
EvtId getDaug(int i)
Definition: EvtDecayBase.hh:66
Definition: EvtId.hh:27
static EvtId getId(const std::string &name)
Definition: EvtPDL.cc:287
virtual EvtVector4C epsParent(int i) const
Definition: EvtParticle.cc:565
const EvtVector4R & getP4() const
Definition: EvtParticle.cc:121
EvtParticle * getDaug(int i)
Definition: EvtParticle.cc:85
double mass() const
Definition: EvtParticle.cc:127
virtual EvtVector4C eps(int i) const
Definition: EvtParticle.cc:576
double initializePhaseSpace(int numdaughter, EvtId *daughters, double poleSize=-1., int whichTwo1=0, int whichTwo2=1)
EvtDecayBase * clone()
void getName(std::string &name)
void decay(EvtParticle *p)
EvtVector4C conj() const
Definition: EvtVector4C.hh:206