Skip to content

Commit

Permalink
Update and rename input_class.h to input_class.h
Browse files Browse the repository at this point in the history
  • Loading branch information
jpkneller authored Jul 1, 2024
1 parent fc950c8 commit 7de0684
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/EMEWS/_ext/input_class.h → src/BEMEWS/_ext/input_class.h
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@

#include "EMEWS.h"
#include "BEMEWS.h"

#ifndef input_class_H
#define input_class_H

// **************************************

struct InputDataEMEWS;
struct InputDataBEMEWS;

void Profile_loader(InputDataEMEWS ID,std::string &outputfilenamestem);
void Neutrino_loader(InputDataEMEWS ID,std::string &outputfilenamestem);
void Profile_loader(InputDataBEMEWS ID,std::string &outputfilenamestem);
void Neutrino_loader(InputDataBEMEWS ID,std::string &outputfilenamestem);

// **********************************************************
// **********************************************************
// **********************************************************

struct InputDataEMEWS
struct InputDataBEMEWS
{ double altitude, azimuth; // in decimal degrees, altitude is negative for angles below the horizon
std::string outputfilenamestem;
std::string densityprofile;
Expand All @@ -26,10 +26,10 @@ struct InputDataEMEWS
double deltam_21, deltam_32; // in eV^2
double theta12, theta13, theta23, deltaCP; // all in degrees
double accuracy;
double stepcounterlimit; // how often it spits out data
bool outputflag; // whether the code outputs data as it does the integgration
double stepcounterlimit; // how often it outputs data
bool outputflag; // whether the code outputs data as it does the integration

InputDataEMEWS(void) {;}
InputDataBEMEWS(void) {;}
};

#endif

0 comments on commit 7de0684

Please sign in to comment.