Newer
Older
//************************************************************************//
// //
// 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/>. //
// //
//************************************************************************//
// pbarpReaction class definition file. -*- C++ -*-
// Copyright 2012 Bertram Kopf
#include <getopt.h>
#include <fstream>
#include "pbarpUtils/pbarpReaction.hh"
Julian Pychy
committed
#include "pbarpUtils/PbarpChannelEnv.hh"
#include "PwaUtils/GlobalEnv.hh"
#include "PwaUtils/IsobarLSDecay.hh"
#include "PwaUtils/IsobarTensorDecay.hh"
Bertram Kopf
committed
#include "ConfigParser/ParserBase.hh"
#include "qft++/relativistic-quantum-mechanics/Utils.hh"
#include "ErrLogger/ErrLogger.hh"
#include "Particle/Particle.hh"
#include "pbarpUtils/pbarpStatesLS.hh"
Julian Pychy
committed
pbarpReaction::pbarpReaction(std::vector<std::pair<Particle*, Particle*> >& prodPairs, ChannelID channelID, int lmax) :
_channelID(channelID)
,_lmax(lmax)
std::shared_ptr<pbarpStatesLS> thepbarpStates(new pbarpStatesLS(lmax));
Julian Pychy
committed
std::vector< std::shared_ptr<const IGJPC> > pbarpIGJPCStatesAll= thepbarpStates->igjpcStates();
std::vector< std::shared_ptr<const IGJPC> >::const_iterator itIGJPC;
std::vector< std::shared_ptr<const JPCLS> > all_JPCLSs= thepbarpStates->all_JPCLS_States();
std::vector< std::shared_ptr<const JPCLS> >::const_iterator itJPCLS;
for(itJPCLS = all_JPCLSs.begin(); itJPCLS != all_JPCLSs.end(); ++itJPCLS){
std::shared_ptr<const jpcRes> currentJPC = (*itJPCLS);
if(std::find(_jpcToJPCLSMap[currentJPC].begin(), _jpcToJPCLSMap[currentJPC].end(), (*itJPCLS)) == _jpcToJPCLSMap[currentJPC].end()){
_jpcToJPCLSMap[currentJPC].push_back(*itJPCLS);
for(itIGJPC = pbarpIGJPCStatesAll.begin(); itIGJPC!=pbarpIGJPCStatesAll.end(); ++itIGJPC){
bool acceptJPC=false;
std::vector<std::pair<Particle*, Particle*> >::iterator itPartPairs;
for (itPartPairs=prodPairs.begin(); itPartPairs!= prodPairs.end(); ++itPartPairs){
std::string decName=(*itIGJPC)->name();
Julian Pychy
committed
std::shared_ptr<IsobarLSDecay> currentDec(new IsobarLSDecay( (*itIGJPC),itPartPairs->first, itPartPairs->second, _channelID, decName));
currentDec->setProductionAmp();
if(!currentDec->JPCLSAmps().size()>0 || fabs(currentDec->isospinCG())<1.e-10){
Julian Pychy
committed
Info << "Skip amplitude " << currentDec->name() << "\tJPCLSAmps().size(): " << currentDec->JPCLSAmps().size() <<"\tisospinCG(): " << currentDec->isospinCG() << endmsg;
for(auto lIt = _jpcToJPCLSMap[*itIGJPC].begin(); lIt != _jpcToJPCLSMap[*itIGJPC].end(); ++lIt){
if(CheckJPCLSForParticle((std::string&)(*itPartPairs).first->name(), *lIt) &&
CheckJPCLSForParticle((std::string&)(*itPartPairs).second->name(), *lIt)){
if(std::find(_pbarpJPCLSs.begin(), _pbarpJPCLSs.end(), *lIt) == _pbarpJPCLSs.end())
_pbarpJPCLSs.push_back(*lIt);
acceptProd = true;
}
Julian Pychy
committed
if(GlobalEnv::instance()->parser()->productionFormalism() == "Cano"){
_prodDecs.push_back(currentDec);
}
Julian Pychy
committed
else if(GlobalEnv::instance()->parser()->productionFormalism() == "Tensor"){
std::shared_ptr<IsobarTensorDecay> currentTensorDec(new IsobarTensorDecay( (*itIGJPC),itPartPairs->first, itPartPairs->second, _channelID, decName));
currentTensorDec->setProductionAmp();
currentTensorDec->extractStates();
_prodTensorDecs.push_back(currentTensorDec);
Julian Pychy
committed
else if(GlobalEnv::instance()->parser()->productionFormalism() == "Heli"){
std::shared_ptr<IsobarHeliDecay> currentHeliDec(new IsobarHeliDecay( (*itIGJPC),itPartPairs->first, itPartPairs->second, _channelID, decName));
currentHeliDec->setProductionAmp();
currentHeliDec->extractStates();
_prodHeliDecs.push_back(currentHeliDec);
Julian Pychy
committed
std::vector< std::shared_ptr<const JPCLS> > all_pbarpSingletLS = thepbarpStates->singlet_JPCLS_States();
_pbarpJPCLSsinglet = extractStates(_pbarpJPCLSs, all_pbarpSingletLS);
Julian Pychy
committed
std::vector< std::shared_ptr<const JPCLS> > all_pbarpTriplet0LS = thepbarpStates->triplet0_JPCLS_States();
_pbarpJPCLStriplet0 = extractStates(_pbarpJPCLSs, all_pbarpTriplet0LS);
Julian Pychy
committed
std::vector< std::shared_ptr<const JPCLS> > all_pbarpTripletp1LS = thepbarpStates->tripletp1_JPCLS_States();
_pbarpJPCLStripletp1 = extractStates(_pbarpJPCLSs, all_pbarpTripletp1LS);
Julian Pychy
committed
std::vector< std::shared_ptr<const JPCLS> > all_pbarpTripletm1LS = thepbarpStates->tripletm1_JPCLS_States();
_pbarpJPCLStripletm1 = extractStates(_pbarpJPCLSs, all_pbarpTripletm1LS);
bool pbarpReaction::CheckJPCLSForParticle(std::string& particleName, std::shared_ptr<const JPCLS> theJPCLS){
Julian Pychy
committed
std::map<std::string, std::vector<short> > ldropMap = std::static_pointer_cast<PbarpChannelEnv>(GlobalEnv::instance()->Channel(_channelID))->dropPbarpLForParticleData();
auto ldropIt = ldropMap.find(particleName);
if(ldropIt == ldropMap.end())
return true;
for(auto ldropListIt = (*ldropIt).second.begin(); ldropListIt != (*ldropIt).second.end(); ++ldropListIt){
if((*ldropListIt) == theJPCLS->L){
return false;
}
return true;
pbarpReaction::~pbarpReaction(){
}
void pbarpReaction::print(std::ostream& os) const{
os << "\n pbarp reaction\n";
Julian Pychy
committed
std::vector<std::shared_ptr<const IGJPC> >::const_iterator itIGJPC;
for(itIGJPC=_pbarpIGJPCs.begin(); itIGJPC!=_pbarpIGJPCs.end(); ++itIGJPC){
(*itIGJPC)->print(os);
Julian Pychy
committed
if (GlobalEnv::instance()->parser()->productionFormalism() == "Cano"){
std::vector< std::shared_ptr<IsobarLSDecay> >::const_iterator itIso;
for( itIso=_prodDecs.begin(); itIso!=_prodDecs.end(); ++itIso){
(*itIso)->print(os);
Julian Pychy
committed
}
}
else if (GlobalEnv::instance()->parser()->productionFormalism() == "Heli"){
std::vector< std::shared_ptr<IsobarHeliDecay> >::const_iterator itIso;
for( itIso=_prodHeliDecs.begin(); itIso!=_prodHeliDecs.end(); ++itIso){
(*itIso)->print(os);
Julian Pychy
committed
}
Julian Pychy
committed
else if (GlobalEnv::instance()->parser()->productionFormalism() == "Tensor"){
std::vector< std::shared_ptr<IsobarTensorDecay> >::const_iterator itIso;
for( itIso=_prodTensorDecs.begin(); itIso!=_prodTensorDecs.end(); ++itIso){
(*itIso)->print(os);
Julian Pychy
committed
}
}