BOSS 7.1.0
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtFromParent_antiLambda Class Reference

#include <EvtFromParent_antiLambda.hh>

+ Inheritance diagram for EvtFromParent_antiLambda:

Public Member Functions

 EvtFromParent_antiLambda ()
 
virtual ~EvtFromParent_antiLambda ()
 
void getName (std::string &name)
 
EvtDecayBaseclone ()
 
void initProbMax ()
 
void init ()
 
void decay (EvtParticle *p)
 
- Public Member Functions inherited from EvtDecayIncoherent
void makeDecay (EvtParticle *p)
 
virtual ~EvtDecayIncoherent ()
 
void setDaughterSpinDensity (int daughter)
 
int isDaughterSpinDensitySet (int daughter)
 
- Public Member Functions inherited from EvtDecayBase
virtual void getName (std::string &name)=0
 
virtual void decay (EvtParticle *p)=0
 
virtual void makeDecay (EvtParticle *p)=0
 
virtual EvtDecayBaseclone ()=0
 
virtual void init ()
 
virtual void initProbMax ()
 
virtual std::string commandName ()
 
virtual void command (std::string cmd)
 
double getProbMax (double prob)
 
double resetProbMax (double prob)
 
 EvtDecayBase ()
 
virtual ~EvtDecayBase ()
 
virtual bool matchingDecay (const EvtDecayBase &other) const
 
EvtId getParentId ()
 
double getBranchingFraction ()
 
void disableCheckQ ()
 
void checkQ ()
 
int getNDaug ()
 
EvtIdgetDaugs ()
 
EvtId getDaug (int i)
 
int getNArg ()
 
int getPHOTOS ()
 
void setPHOTOS ()
 
void setVerbose ()
 
void setSummary ()
 
double * getArgs ()
 
std::string * getArgsStr ()
 
double getArg (int j)
 
std::string getArgStr (int j)
 
std::string getModelName ()
 
int getDSum ()
 
int summary ()
 
int verbose ()
 
void saveDecayInfo (EvtId ipar, int ndaug, EvtId *daug, int narg, std::vector< std::string > &args, std::string name, double brfr)
 
void printSummary ()
 
void setProbMax (double prbmx)
 
void noProbMax ()
 
void checkNArg (int a1, int a2=-1, int a3=-1, int a4=-1)
 
void checkNDaug (int d1, int d2=-1)
 
void checkSpinParent (EvtSpinType::spintype sp)
 
void checkSpinDaughter (int d1, EvtSpinType::spintype sp)
 
virtual int nRealDaughters ()
 

Additional Inherited Members

- Static Public Member Functions inherited from EvtDecayBase
static void findMasses (EvtParticle *p, int ndaugs, EvtId daugs[10], double masses[10])
 
static void findMass (EvtParticle *p)
 
static double findMaxMass (EvtParticle *p)
 
- Protected Member Functions inherited from EvtDecayBase
bool daugsDecayedByParentModel ()
 
- Protected Attributes inherited from EvtDecayBase
bool _daugsDecayedByParentModel
 

Detailed Description

Definition at line 30 of file EvtFromParent_antiLambda.hh.

Constructor & Destructor Documentation

◆ EvtFromParent_antiLambda()

EvtFromParent_antiLambda::EvtFromParent_antiLambda ( )
inline

Definition at line 34 of file EvtFromParent_antiLambda.hh.

34{}

Referenced by clone().

◆ ~EvtFromParent_antiLambda()

EvtFromParent_antiLambda::~EvtFromParent_antiLambda ( )
virtual

Definition at line 41 of file EvtFromParent_antiLambda.cc.

41{}

Member Function Documentation

◆ clone()

EvtDecayBase * EvtFromParent_antiLambda::clone ( )
virtual

Implements EvtDecayBase.

Definition at line 49 of file EvtFromParent_antiLambda.cc.

49 {
50
51 return new EvtFromParent_antiLambda;
52
53}

◆ decay()

void EvtFromParent_antiLambda::decay ( EvtParticle p)
virtual

Implements EvtDecayBase.

Definition at line 69 of file EvtFromParent_antiLambda.cc.

69 {
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 std::cout<<"FromParent_antiLambda: pi- p4[numstable] = "<<p4[numstable]<<std::endl;
91 numstable++;
92 //p
93 evtnumstable[numstable]=EvtPDL::evtIdFromStdHep(2212);
94 p4[numstable] = EvtParticle::_NextLevelP4[3];
95 std::cout<<"FromParent_antiLambda: p+ p4[numstable] = "<<p4[numstable]<<std::endl;
96 numstable++;
97 }
98 if(p->getId()==antiLambdaId) {
99 std::cout<<"anti-Lambda0's parent id:"<<p->getParent()->getId()<<" p4 ="<<p->getParent()->getP4Lab()<<std::endl;
100 std::cout<<"anti-Lambda0 id:"<<p->getId()<<" p4 ="<<p->getP4Lab()<<std::endl;
101 //pi+
102 evtnumstable[numstable]=EvtPDL::evtIdFromStdHep(211);
103 p4[numstable] = EvtParticle::_NextLevelP4[0];
104 std::cout<<"FromParent_antiLambda: pi+ p4[numstable] = "<<p4[numstable]<<std::endl;
105 numstable++;
106 //pbar
107 evtnumstable[numstable]=EvtPDL::evtIdFromStdHep(-2212);
108 p4[numstable] = EvtParticle::_NextLevelP4[1];
109 std::cout<<"FromParent_antiLambda: anti-p- p4[numstable] = "<<p4[numstable]<<std::endl;
110 numstable++;
111 }
112 p->makeDaughters(numstable,evtnumstable);
113 int ndaugFound=0;
114 for(int i=0;i<numstable;i++){
115 p->getDaug(i)->init(evtnumstable[i],p4[i]);
116 ndaugFound++;
117 }
118 if ( ndaugFound == 0 ) {
119 report(ERROR,"EvtGen") << "Phokhara has failed to do a decay ";
120 report(ERROR,"EvtGen") << EvtPDL::name(p->getId()).c_str() << " " << p->mass()<<endl;
121 assert(0);
122 }
123 if(p->getId()==LambdaId) {
124 //int channel=EvtDecayTable::inChannelList(p->getId(),numstable,evtnumstable);
125 //more=(channel!=-1);
126 //if(more) { std::cout<<"EvtFromParent_antiLambda:Existence of mode "<<channel<<" in exclusive decay list has the same final state as this one"<<std::endl;abort(); }
127
128 std::cout<<"EvtFromParent_antiLambda Lambda0's parent id:"<<p->getParent()->getId()<<" p4 ="<<p->getParent()->getP4Lab()<<std::endl;
129 std::cout<<"EvtFromParent_antiLambda SUMMARY: part p4"<<p->getP4Lab()<<std::endl;
130 std::cout<<"EvtFromParent_antiLambda SUMMARY: Daug0 p4"<<p->getDaug(0)->getP4Lab()<<std::endl;
131 std::cout<<"EvtFromParent_antiLambda SUMMARY: Daug1 p4"<<p->getDaug(1)->getP4Lab()<<std::endl;
132 }
133 if(p->getId()==antiLambdaId) {
134 //int channel=EvtDecayTable::inChannelList(p->getId(),numstable,evtnumstable);
135 //more=(channel!=0);
136 //if(more) { std::cout<<"EvtFromParent_antiLambda:Existence of mode "<<channel<<" in exclusive decay list has the same final state as this one"<<std::endl;abort(); }
137
138 std::cout<<"EvtFromParent_antiLambda antiLambda0's parent id:"<<p->getParent()->getId()<<" p4 ="<<p->getParent()->getP4Lab()<<std::endl;
139 std::cout<<"EvtFromParent_antiLambda SUMMARY: part p4"<<p->getP4Lab()<<std::endl;
140 std::cout<<"EvtFromParent_antiLambda SUMMARY: Daug0 p4"<<p->getDaug(0)->getP4Lab()<<std::endl;
141 std::cout<<"EvtFromParent_antiLambda SUMMARY: Daug1 p4"<<p->getDaug(1)->getP4Lab()<<std::endl;
142 }
143 }
144 return ;
145
146
147
148}
ostream & report(Severity severity, const char *facility)
Definition: EvtReport.cc:36
@ ERROR
Definition: EvtReport.hh:49
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()
Definition: EvtParticle.cc:684
EvtId getId() const
Definition: EvtParticle.cc:112
EvtParticle * getParent()
Definition: EvtParticle.cc:86
static int _NextLevelDauNum
Definition: EvtParticle.hh:149
EvtParticle * getDaug(int i)
Definition: EvtParticle.cc:84
static EvtVector4R _NextLevelP4[20]
Definition: EvtParticle.hh:151
double mass() const
Definition: EvtParticle.cc:126
double double double * p4
Definition: qcdloop1.h:77

◆ getName()

void EvtFromParent_antiLambda::getName ( std::string &  name)
virtual

Implements EvtDecayBase.

Definition at line 43 of file EvtFromParent_antiLambda.cc.

43 {
44
45 model_name="FromParent_antiLambda";
46
47}

◆ init()

void EvtFromParent_antiLambda::init ( )
virtual

Reimplemented from EvtDecayBase.

Definition at line 56 of file EvtFromParent_antiLambda.cc.

56 {
57
58 // check that there are 0 arguments
59 checkNArg(0);
60
61}
void checkNArg(int a1, int a2=-1, int a3=-1, int a4=-1)

◆ initProbMax()

void EvtFromParent_antiLambda::initProbMax ( )
virtual

Reimplemented from EvtDecayBase.

Definition at line 63 of file EvtFromParent_antiLambda.cc.

63 {
64
65 noProbMax();
66
67}
void noProbMax()

The documentation for this class was generated from the following files: