Skip to content
Snippets Groups Projects
Commit c6cdd9a6 authored by BaM's avatar BaM
Browse files

Merge branch 'v5.1' into 'v5.1'

Fix CLASS Gui message

See merge request !76
parents 0048c8f7 b06a1dce
No related branches found
No related tags found
No related merge requests found
...@@ -23,9 +23,7 @@ ...@@ -23,9 +23,7 @@
using namespace std; using namespace std;
class EQ_OneParameter; class EQ_OneParameter;
#ifndef __ROOTCLING__
typedef void (EQ_OneParameter::*EQOP_MthPtr)( const string & ); typedef void (EQ_OneParameter::*EQOP_MthPtr)( const string & );
#endif
//-----------------------------------------------------------------------------// //-----------------------------------------------------------------------------//
...@@ -268,9 +266,7 @@ class EQ_OneParameter : public EquivalenceModel ...@@ -268,9 +266,7 @@ class EQ_OneParameter : public EquivalenceModel
string fTMVANFOFilePath; //!<The weight needed by TMVA to construct and execute the multilayer perceptron string fTMVANFOFilePath; //!<The weight needed by TMVA to construct and execute the multilayer perceptron
#ifndef __ROOTCLING__
map<string, EQOP_MthPtr> fKeyword; map<string, EQOP_MthPtr> fKeyword;
#endif
map< ZAI, pair<double,double> > fZAILimits; //!< Fresh fuel range : map<ZAI<min edge ,max edge >> map< ZAI, pair<double,double> > fZAILimits; //!< Fresh fuel range : map<ZAI<min edge ,max edge >>
......
...@@ -144,9 +144,9 @@ public : ...@@ -144,9 +144,9 @@ public :
*/ */
//@{ //@{
#ifndef __ROOTCLING__
double GetImpuritiesTolerance() { return fImpuritiesTolerance;}
double GetImpuritiesTolerance() { return fImpuritiesTolerance;}
#ifndef __ROOTCLING__
map < string , vector <Storage*> > GetAllStorage() {return fStorage;} //!< Return the map containing all the storage vectors (useful in CLASS Reactor to check list consistency) map < string , vector <Storage*> > GetAllStorage() {return fStorage;} //!< Return the map containing all the storage vectors (useful in CLASS Reactor to check list consistency)
vector<Storage*> GetStorage(string keyword) { return fStorage[keyword]; } //!< Return the Pointer to Storage associated to a StreamList vector<Storage*> GetStorage(string keyword) { return fStorage[keyword]; } //!< Return the Pointer to Storage associated to a StreamList
...@@ -177,7 +177,6 @@ public : ...@@ -177,7 +177,6 @@ public :
IsotopicVector GetSeparationEfficiencyAt(cSecond time); IsotopicVector GetSeparationEfficiencyAt(cSecond time);
#ifndef __ROOTCLING__
void Evolution(cSecond t); //!< Perform the FabricationPlant evolution void Evolution(cSecond t); //!< Perform the FabricationPlant evolution
void DumpStock(map <string , vector<double> > LambdaArray); //!< Update the Stock status after building process void DumpStock(map <string , vector<double> > LambdaArray); //!< Update the Stock status after building process
void TakeReactorFuel(int ReactorId) ; //!< Remove the fuel of reactor ReactorId from stock void TakeReactorFuel(int ReactorId) ; //!< Remove the fuel of reactor ReactorId from stock
...@@ -195,7 +194,6 @@ public : ...@@ -195,7 +194,6 @@ public :
void SortMix(vector<IsotopicVector> &IVArray, vector<cSecond> &TimeArray, vector< pair<int,int> > &AdressArray); void SortMix(vector<IsotopicVector> &IVArray, vector<cSecond> &TimeArray, vector< pair<int,int> > &AdressArray);
void SortRandom(vector<IsotopicVector> &IVArray, vector<cSecond> &TimeArray, vector< pair<int,int> > &AdressArray); void SortRandom(vector<IsotopicVector> &IVArray, vector<cSecond> &TimeArray, vector< pair<int,int> > &AdressArray);
#endif
//@} //@}
......
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