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

removed class WignerDUtil

parent 180dec8f
No related branches found
No related tags found
No related merge requests found
#include <getopt.h>
#include <fstream>
#include <iostream>
#include <boost/algorithm/string.hpp>
#include "Examples/pbarp/WignerDUtil.hh"
#include "Examples/pbarp/IsobarDecay.hh"
#include "qft++/relativistic-quantum-mechanics/Utils.hh"
#include "ErrLogger/ErrLogger.hh"
#include "Particle/Particle.hh"
#include "Utils/FunctionUtils.hh"
WignerDUtil::WignerDUtil(std::vector<Particle*>& mother, std::vector<Particle*>& daughter){
_name=FunctionUtils::particleListName(daughter)+"_"+FunctionUtils::particleListName(mother);
}
WignerDUtil::~WignerDUtil(){
}
#pragma once
#include <iostream>
#include <vector>
#include <complex>
#include <map>
#include <vector>
#include <string>
#include <sstream>
#include <boost/shared_ptr.hpp>
#include "PwaUtils/DataUtils.hh"
class Particle;
class IsobarDecay;
class WignerDUtil {
public:
WignerDUtil(std::vector<Particle*>& mother, std::vector<Particle*>& daughter);
~WignerDUtil();
std::string name() {return _name;}
protected:
std::string _name;
private:
};
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