Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 0 additions & 24 deletions config/config_base.txt

This file was deleted.

6 changes: 2 additions & 4 deletions include/CRADLE/ConfigParser.hh
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,19 @@ struct NuclearOptions {
struct General {
int Verbosity = 1;
int Loop = 0;
int Threads = 2;
int Threads = 1;
std::string Output = "output.txt";
};

struct CouplingConstants {
double CS = 0.0;
double CSP = 0.0;
double CV = 1.0;
double CVP = 1.0;
double CVP = 0.0;
double CT = 0.0;
double CTP = 0.0;
double CA = 1.2754;
double CAP = 1.2754;
double a = 1.;
double b = 0.;
};

struct Cuts {
Expand Down
4 changes: 0 additions & 4 deletions include/CRADLE/DecayManager.hh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ class DecayManager {
void RegisterDecayMode(const std::string, DecayMode&);
void RegisterParticle(Particle*);
void RegisterDistribution(const std::string, std::vector<std::vector<double> >*);
void RegisterBetaType(const std::string, const std::string); //////// ajout de SL 12/05/2023
void RegisterSpectrumGenerator(const std::string, SpectrumGenerator&);
void RegisterBasicSpectrumGenerators();
void ListRegisteredParticles();
Expand All @@ -41,8 +40,6 @@ class DecayManager {
DecayMode& GetDecayMode(const std::string);
std::vector<std::vector<double> >* GetDistribution(const std::string);

std::string GetBetaType(const std::string); /////// ajout de SL 12/05/2023

ConfigOptions configOptions;

private:
Expand All @@ -52,7 +49,6 @@ class DecayManager {

std::map<const std::string, DecayMode&> registeredDecayModes;
std::map<const std::string, std::vector<std::vector<double> >* > registeredDistributions;
std::map<const std::string, std::string> registeredBetaType; /////// ajout de SL 12/05/2023
//std::vector<Particle*> particleStack;
std::map<const std::string, Particle*> registeredParticles;
std::string outputName;
Expand Down
1 change: 0 additions & 1 deletion include/CRADLE/Particle.hh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ class Particle {
oss << name << "\t" << currentExcitationEnergy << "\t" << GetKinEnergy() << "\t" << fourMomentum(0) << "\t" << fourMomentum(1) << "\t" << fourMomentum(2) << "\t" << fourMomentum(3);
return oss.str();
};

inline void SetMomentum(ublas::vector<double> v) { fourMomentum = v; };
inline void SetExcitationEnergy(double e) { currentExcitationEnergy = e; fourMomentum(0)+=e; };
double GetLifetime() const;
Expand Down
Loading