BOSS 7.1.2
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtFromParent_Lambda.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_Lambda.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>
40
42
43void EvtFromParent_Lambda::getName(std::string& model_name){
44
45 model_name="FromParent_Lambda";
46
47}
48
54
55
57
58 // check that there are 0 arguments
59 checkNArg(0);
60
61}
62
68
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 std::cout<<"Lambda0's parent id:"<<p->getParent()->getId()<<" p4 ="<<p->getParent()->getP4Lab()<<std::endl;
88 std::cout<<"Lambda0's id:"<<p->getId()<<" p4 ="<<p->getP4Lab()<<std::endl;
89 //pi-
90 evtnumstable[numstable]=EvtPDL::evtIdFromStdHep(-211);
91 p4[numstable] = EvtParticle::_NextLevelP4[2];
92 std::cout<<"FromParent_Lambda: pi- p4[numstable] = "<<p4[numstable]<<std::endl;
93 numstable++;
94 //p
95 evtnumstable[numstable]=EvtPDL::evtIdFromStdHep(2212);
96 p4[numstable] = EvtParticle::_NextLevelP4[3];
97 std::cout<<"FromParent_Lambda: p+ p4[numstable] = "<<p4[numstable]<<std::endl;
98 numstable++;
99 }
100 if(p->getId()==antiLambdaId) {
101 std::cout<<"anti-Lambda0's parent id:"<<p->getParent()->getId()<<" p4 ="<<p->getParent()->getP4Lab()<<std::endl;
102 std::cout<<"anti-Lambda0's id:"<<p->getId()<<" p4 ="<<p->getP4Lab()<<std::endl;
103 //pi+
104 evtnumstable[numstable]=EvtPDL::evtIdFromStdHep(211);
105 p4[numstable] = EvtParticle::_NextLevelP4[0];
106 std::cout<<"FromParent_Lambda: pi+ p4[numstable] = "<<p4[numstable]<<std::endl;
107 numstable++;
108 //pbar
109 evtnumstable[numstable]=EvtPDL::evtIdFromStdHep(-2212);
110 p4[numstable] = EvtParticle::_NextLevelP4[1];
111 std::cout<<"FromParent_Lambda: anti-p- p4[numstable] = "<<p4[numstable]<<std::endl;
112 numstable++;
113 }
114 p->makeDaughters(numstable,evtnumstable);
115 int ndaugFound=0;
116 for(int i=0;i<numstable;i++){
117 p->getDaug(i)->init(evtnumstable[i],p4[i]);
118 ndaugFound++;
119 }
120 if ( ndaugFound == 0 ) {
121 report(ERROR,"EvtGen") << "Phokhara has failed to do a decay ";
122 report(ERROR,"EvtGen") << EvtPDL::name(p->getId()).c_str() << " " << p->mass()<<endl;
123 assert(0);
124 }
125 if(p->getId()==LambdaId) {
126 //int channel=EvtDecayTable::inChannelList(p->getId(),numstable,evtnumstable);
127 //more=(channel!=-1);
128 //if(more) { std::cout<<"EvtFromParent_Lambda:Existence of mode "<<channel<<" in exclusive decay list has the same final state as this one"<<std::endl;abort(); }
129
130 std::cout<<"EvtFromParent_Lambda Lambda0's parent id:"<<p->getParent()->getId()<<" p4 ="<<p->getParent()->getP4Lab()<<std::endl;
131 std::cout<<"EvtFromParent_Lambda SUMMARY: part p4"<<p->getP4Lab()<<std::endl;
132 std::cout<<"EvtFromParent_Lambda SUMMARY: Daug0 p4"<<p->getDaug(0)->getP4Lab()<<std::endl;
133 std::cout<<"EvtFromParent_Lambda SUMMARY: Daug1 p4"<<p->getDaug(1)->getP4Lab()<<std::endl;
134 }
135 if(p->getId()==antiLambdaId) {
136 //int channel=EvtDecayTable::inChannelList(p->getId(),numstable,evtnumstable);
137 //more=(channel!=-1);
138 //if(more) { std::cout<<"EvtFromParent_Lambda:Existence of mode "<<channel<<" in exclusive decay list has the same final state as this one"<<std::endl;abort(); }
139
140 std::cout<<"EvtFromParent_Lambda antiLambda0's parent id:"<<p->getParent()->getId()<<" p4 ="<<p->getParent()->getP4Lab()<<std::endl;
141 std::cout<<"EvtFromParent_Lambda SUMMARY: part p4"<<p->getP4Lab()<<std::endl;
142 std::cout<<"EvtFromParent_Lambda SUMMARY: Daug0 p4"<<p->getDaug(0)->getP4Lab()<<std::endl;
143 std::cout<<"EvtFromParent_Lambda SUMMARY: Daug1 p4"<<p->getDaug(1)->getP4Lab()<<std::endl;
144 }
145 }
146 return ;
147
148
149
150}
151
152
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)
void decay(EvtParticle *p)
void getName(std::string &name)
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
EvtParticle * getDaug(int i)
static EvtVector4R _NextLevelP4[20]
double mass() const
double double double * p4
Definition qcdloop1.h:77