Skip to content
Snippets Groups Projects
Commit 47a317e1 authored by Bertram Kopf's avatar Bertram Kopf
Browse files

fixed naming scheme for multipole amplitudes

parent df0427c6
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,7 @@ HeliMultipoleDecNonRefAmps::HeliMultipoleDecNonRefAmps(std::shared_ptr<IsobarHel
if(JgammaMin<0) JgammaMin=Spin(_daughter2->J()-_JPCPtr->J);
if(JgammaMin==0) JgammaMin=Spin(1);
int parityPiPf=_JPCPtr->P*_daughter2->theCParity();
int parityPiPf=_JPCPtr->P*_daughter2->theParity();
Spin JgammaMax=Spin(_JPCPtr->J+_daughter2->J());
......@@ -75,7 +75,7 @@ HeliMultipoleDecNonRefAmps::HeliMultipoleDecNonRefAmps(std::shared_ptr<IsobarHel
std::stringstream tmpSpinStr;
tmpSpinStr << currentSpin;
int currentSpinInt=currentSpin;
if(parityPiPf<0){
if(parityPiPf<0){
if(int(currentSpinInt)%2 ==0 ) currentKey+="M"+tmpSpinStr.str();
else currentKey+="E"+tmpSpinStr.str();
}
......@@ -103,7 +103,7 @@ HeliMultipoleDecNonRefAmps::HeliMultipoleDecNonRefAmps(std::shared_ptr<AbsDecay>
if(JgammaMin<0) JgammaMin=Spin(_daughter2->J()-_JPCPtr->J);
if(JgammaMin==0) JgammaMin=Spin(1);
int parityPiPf=_JPCPtr->P*_daughter2->theCParity();
int parityPiPf=_JPCPtr->P*_daughter2->theParity();
Spin JgammaMax=Spin(_JPCPtr->J+_daughter2->J());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment