//************************************************************************// // // // Copyright 2013 Bertram Kopf (bertram@ep1.rub.de) // // Julian Pychy (julian@ep1.rub.de) // // - Ruhr-Universität Bochum // // // // This file is part of Pawian. // // // // Pawian is free software: you can redistribute it and/or modify // // it under the terms of the GNU General Public License as published by // // the Free Software Foundation, either version 3 of the License, or // // (at your option) any later version. // // // // Pawian is distributed in the hope that it will be useful, // // but WITHOUT ANY WARRANTY; without even the implied warranty of // // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // // GNU General Public License for more details. // // // // You should have received a copy of the GNU General Public License // // along with Pawian. If not, see <http://www.gnu.org/licenses/>. // // // //************************************************************************// // BreitWignerDynamics class definition file. -*- C++ -*- // Copyright 20123Bertram Kopf #include <getopt.h> #include <fstream> #include <string> #include <mutex> #include "PwaUtils/BreitWignerRelDynamics.hh" #include "ErrLogger/ErrLogger.hh" #include "Particle/Particle.hh" #include "PwaDynamics/BreitWignerFunction.hh" #include "Utils/IdStringMapRegistry.hh" BreitWignerRelDynamics::BreitWignerRelDynamics(std::string& name, std::vector<Particle*>& fsParticles, Particle* mother, std::vector<Particle*>& fsParticlesDaughter1, std::vector<Particle*>& fsParticlesDaughter2) : BreitWignerDynamics(name, fsParticles, mother) ,_fsParticlesDaughter1(fsParticlesDaughter1) ,_fsParticlesDaughter2(fsParticlesDaughter2) ,_dynMassKeyDaughter1(_dynKey+FunctionUtils::particleListName(fsParticlesDaughter1)) ,_dynMassKeyDaughter2(_dynKey+FunctionUtils::particleListName(fsParticlesDaughter2)) ,_dynMassIdDaughter1(IdStringMapRegistry::instance()->keyStringId(_keyForMassList, _dynMassKeyDaughter1)) ,_dynMassIdDaughter2(IdStringMapRegistry::instance()->keyStringId(_keyForMassList, _dynMassKeyDaughter2)) { InfoMsg << "BreitWignerRelDynamics for " << _name << " with mass key daughter1 " << _dynMassKeyDaughter1 << " and mass key daughter2 " << _dynMassKeyDaughter2 << endmsg; } BreitWignerRelDynamics::~BreitWignerRelDynamics() { } complex<double> BreitWignerRelDynamics::eval(EvtData* theData, AbsXdecAmp* grandmaAmp, Spin OrbMom){ int evtNo=theData->evtNo; if ( _cacheAmps && !_recalculate){ return _cachedMap[evtNo]; } complex<double> result=BreitWignerFunction::Rel(theData->DoubleMassId.at(_dynId), _currentMass, _currentWidth, theData->DoubleMassId.at(_dynMassIdDaughter1), theData->DoubleMassId.at(_dynMassIdDaughter2)); if ( _cacheAmps){ theMutex.lock(); _cachedMap[evtNo]=result; theMutex.unlock(); } return result; } void BreitWignerRelDynamics::fillMasses(EvtData* theData){ AbsDynamics::fillMasses(theData); Vector4<double> mass4VecD1(0.,0.,0.,0.); std::vector<Particle*>::iterator it; for (it=_fsParticlesDaughter1.begin(); it !=_fsParticlesDaughter1.end(); ++it){ std::string currentName=(*it)->name(); mass4VecD1+= theData->FourVecsId.at(IdStringMapRegistry::instance()->stringId(currentName)); } double sqrMassDaughter1=mass4VecD1.Mass2(); if (sqrMassDaughter1>0.) theData->DoubleMassId[_dynMassIdDaughter1]=mass4VecD1.Mass(); else if( sqrMassDaughter1 > -1.e-6) theData->DoubleMassId[_dynMassIdDaughter1]=0.; else{ Alert << "mass4VecD1.Mass2() is " << mass4VecD1.Mass2() << " and thus < -1e-6 !!!" << "\nexit !!!" << endmsg; exit(0); } Vector4<double> mass4VecD2(0.,0.,0.,0.); for (it=_fsParticlesDaughter2.begin(); it !=_fsParticlesDaughter2.end(); ++it){ std::string currentName=(*it)->name(); mass4VecD2+= theData->FourVecsId.at(IdStringMapRegistry::instance()->stringId(currentName)); } double sqrMassDaughter2=mass4VecD2.Mass2(); if (sqrMassDaughter2>0.) theData->DoubleMassId[_dynMassIdDaughter2]=mass4VecD2.Mass(); else if( sqrMassDaughter2 > -1.e-6) theData->DoubleMassId[_dynMassIdDaughter2]=0.; else{ Alert << "mass4VecD2.Mass2() is " << mass4VecD2.Mass2() << " and thus < -1e-6 !!!" << "\nexit !!!" << endmsg; exit(0); } }