BOSS 7.1.1
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtFromParent.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: EvtFromParent.cc
12//
13// Description: Routine to decay a particle according th phase space
14//
15// Modification history:
16//
17// RYD January 8, 1997 Module created
18//
19//------------------------------------------------------------------------
20//
22#include <stdlib.h>
26#include "EvtGenBase/EvtPDL.hh"
27#include "EvtGenBase/EvtId.hh"
31#include <iostream>
32#include <iomanip>
33#include <fstream>
34#include <stdlib.h>
35#include <unistd.h>
36#include <stdio.h>
37
39#include <string>
41
42void EvtFromParent::getName(std::string& model_name){
43
44 model_name="FromParent";
45
46}
47
49
50 return new EvtFromParent;
51
52}
53
54
56
57 // check that there are 0 arguments
58 checkNArg(0);
59
60}
61
63
64 noProbMax();
65
66}
67
69 bool debug=0;
70 //p->printTree();
71 //std::cout<<"FromParent:p->getId() = "<<p->getId()<<std::endl;
72 EvtId LambdaId = EvtPDL::getId("Lambda0");
73 //std::cout<<"LambdaId = "<<LambdaId<<std::endl;
74 EvtId antiLambdaId = EvtPDL::getId("anti-Lambda0");
75 //std::cout<<"antiLambdaId = "<<antiLambdaId<<std::endl;
76 if(p->getId()!=LambdaId&&p->getId()!=antiLambdaId){std::cout<<"Parent particle is required to be Lambda0 or antiLambda0"<<std::endl;abort();}
77 int more=0;
78 int numstable=0;
79 EvtId evtnumstable[100];
80 EvtVector4R p4[20];
81 /*if(EvtParticle::_NextLevelDauNum == 0) {
82 report(ERROR,"EvtGen") << "EvtParticle failed to store the info of NextLevel";
83 ::abort();
84 }*/
86 if(p->getId()==LambdaId) {
87 //pi-
88 evtnumstable[numstable]=EvtPDL::evtIdFromStdHep(-211);
89 p4[numstable] = EvtParticle::_NextLevelP4[2];
90 if (debug) std::cout<<"FromParent: pi- p4[numstable] = "<<p4[numstable]<<std::endl;
91 numstable++;
92 //p
93 evtnumstable[numstable]=EvtPDL::evtIdFromStdHep(2212);
94 p4[numstable] = EvtParticle::_NextLevelP4[3];
95 if (debug) std::cout<<"FromParent: p+ p4[numstable] = "<<p4[numstable]<<std::endl;
96 numstable++;
97 }
98 if(p->getId()==antiLambdaId) {
99 if (debug) std::cout<<"anti-Lambda0's parent id:"<<p->getParent()->getId()<<" p4 ="<<p->getParent()->getP4()<<std::endl;
100 //pi+
101 evtnumstable[numstable]=EvtPDL::evtIdFromStdHep(211);
102 p4[numstable] = EvtParticle::_NextLevelP4[0];
103 if (debug) std::cout<<"FromParent: pi+ p4[numstable] = "<<p4[numstable]<<std::endl;
104 numstable++;
105 //pbar
106 evtnumstable[numstable]=EvtPDL::evtIdFromStdHep(-2212);
107 p4[numstable] = EvtParticle::_NextLevelP4[1];
108 if (debug) std::cout<<"FromParent: anti-p- p4[numstable] = "<<p4[numstable]<<std::endl;
109 numstable++;
110 }
111 p->makeDaughters(numstable,evtnumstable);
112 int ndaugFound=0;
113 for(int i=0;i<numstable;i++){
114 p->getDaug(i)->init(evtnumstable[i],p4[i]);
115 ndaugFound++;
116 }
117 if ( ndaugFound == 0 ) {
118 report(ERROR,"EvtGen") << "Phokhara has failed to do a decay ";
119 report(ERROR,"EvtGen") << EvtPDL::name(p->getId()).c_str() << " " << p->mass()<<endl;
120 assert(0);
121 }
122 if(p->getId()==LambdaId) {
123 //int channel=EvtDecayTable::inChannelList(p->getId(),numstable,evtnumstable);
124 //more=(channel!=-1)&&(channel!=0);
125 //if(more) { std::cout<<"EvtFromParent:Existence of mode "<<channel<<" in exclusive decay list has the same final state as this one"<<std::endl;abort(); }
126
127 if (debug)std::cout<<"EvtFromParent Lambda0's parent id:"<<p->getParent()->getId()<<" p4 ="<<p->getParent()->getP4Lab()<<std::endl;
128 if (debug)std::cout<<"EvtFromParent SUMMARY: part p4"<<p->getP4Lab()<<std::endl;
129 if (debug)std::cout<<"EvtFromParent SUMMARY: Daug0 p4"<<p->getDaug(0)->getP4Lab()<<std::endl;
130 if (debug)std::cout<<"EvtFromParent SUMMARY: Daug1 p4"<<p->getDaug(1)->getP4Lab()<<std::endl;
131 }
132 if(p->getId()==antiLambdaId) {
133 // int channel=EvtDecayTable::inChannelList(p->getId(),numstable,evtnumstable);
134 //more=(channel!=0);
135 //if(more) { std::cout<<"EvtFromParent:Existence of mode "<<channel<<" in exclusive decay list has the same final state as this one"<<std::endl;abort(); }
136
137 if (debug)std::cout<<"EvtFromParent antiLambda0's parent id:"<<p->getParent()->getId()<<" p4 ="<<p->getParent()->getP4Lab()<<std::endl;
138 if (debug)std::cout<<"EvtFromParent SUMMARY: part p4"<<p->getP4Lab()<<std::endl;
139 if (debug)std::cout<<"EvtFromParent SUMMARY: Daug0 p4"<<p->getDaug(0)->getP4Lab()<<std::endl;
140 if (debug)std::cout<<"EvtFromParent SUMMARY: Daug1 p4"<<p->getDaug(1)->getP4Lab()<<std::endl;
141 }
142 }
143 return ;
144
145
146
147}
148
149
ostream & report(Severity severity, const char *facility)
Definition EvtReport.cc:36
@ ERROR
Definition EvtReport.hh:49
void checkNArg(int a1, int a2=-1, int a3=-1, int a4=-1)
EvtDecayBase * clone()
virtual ~EvtFromParent()
void getName(std::string &name)
void decay(EvtParticle *p)
Definition EvtId.hh:27
static EvtId evtIdFromStdHep(int stdhep)
Definition EvtPDL.cc:244
static std::string name(EvtId i)
Definition EvtPDL.hh:64
static EvtId getId(const std::string &name)
Definition EvtPDL.cc:287
void makeDaughters(int ndaug, EvtId *id)
virtual void init(EvtId part_n, const EvtVector4R &p4)=0
EvtVector4R getP4Lab()
EvtId getId() const
EvtParticle * getParent()
static int _NextLevelDauNum
const EvtVector4R & getP4() const
EvtParticle * getDaug(int i)
static EvtVector4R _NextLevelP4[20]
double mass() const
double double double * p4
Definition qcdloop1.h:77