From f15bc2d005bd950a56852562ad8ef39ed30ac221 Mon Sep 17 00:00:00 2001
From: Baptiste LENIAU <baptiste.leniau@subatech.in2p3.fr>
Date: Wed, 20 Apr 2016 10:36:32 +0000
Subject: [PATCH] remove EQM_PWR_LIN_MOX from repo

git-svn-id: svn+ssh://svn.in2p3.fr/class@822 0e7d625b-0364-4367-a6be-d5be4a48d228
---
 .../Model/Equivalence/EQM_PWR_LIN_MOX.hxx     | 71 -------------------
 1 file changed, 71 deletions(-)
 delete mode 100644 source/branches/To_Merge/Model/Equivalence/EQM_PWR_LIN_MOX.hxx

diff --git a/source/branches/To_Merge/Model/Equivalence/EQM_PWR_LIN_MOX.hxx b/source/branches/To_Merge/Model/Equivalence/EQM_PWR_LIN_MOX.hxx
deleted file mode 100644
index 4946ad7d7..000000000
--- a/source/branches/To_Merge/Model/Equivalence/EQM_PWR_LIN_MOX.hxx
+++ /dev/null
@@ -1,71 +0,0 @@
-#ifndef _EQM_PWR_LIN_MOX_HXX
-#define _EQM_PWR_LIN_MOX_HXX
-
-#include "EquivalenceModel.hxx"
-
-#include <string>
-
-using namespace std;
-
-//-----------------------------------------------------------------------------//
-//! Defines an EquivalenceModel based on a linear fit
-
-/*!
- The aim of these class is to constuct a fuel from an equivalence model
- based on a Linear Eq Model @f$BU = \alpha_{0} + \sum_{i\in fissile}\alpha_{i}\cdot n_{i} @f$
- For one set of  @f$\alpha @f$ values the fabrication time is fixed in order to decrease 
- the dimentionality by 1 (@f$^{241}Am@f$ is thus fixed by this fixed decay time) .
- @author BaM
- @version 3.0
- */
-//________________________________________________________________________
-
-class EQM_PWR_LIN_MOX : public EquivalenceModel
-{
-	public :
-	/*!
-	 \name Constructor
-	 */
-	//@{
-	
-	//{
-	/// Simple constructor
-	
-	/*!
-	 Make a new EQM_PWR_LIN_MOX
-	 \param WeightPath : Path to the file containing the @f$\alpha_{i}@f$. The file is format as :
-	 
-	 @f$PARAM@f$   @f$\alpha_{0}@f$  @f$\alpha_{^{238}Pu}@f$   @f$\alpha_{^{239}Pu}@f$  @f$\alpha_{^{240}Pu}@f$   @f$\alpha_{^{241}Pu}@f$   @f$\alpha_{^{242}Pu}@f$
-	 
-	 */
-	EQM_PWR_LIN_MOX(string WeightPath);
-	//}
-	
-	//{
-	/// Logger constructor
-	
-	/*!
-	 Make a new EQM_PWR_LIN_MOX
-	 \param log : use for the log
-	 \param WeightPath : Path to the file containing the @f$\alpha_{i}@f$. The file is format as :
-	 
-	  @f$PARAM@f$   @f$\alpha_{0}@f$  @f$\alpha_{^{238}Pu}@f$   @f$\alpha_{^{239}Pu}@f$  @f$\alpha_{^{240}Pu}@f$   @f$\alpha_{^{241}Pu}@f$   @f$\alpha_{^{242}Pu}@f$
-	 
-	 */
-	EQM_PWR_LIN_MOX(CLASSLogger* log, string WeightPath);
-	//}
-	
-	~EQM_PWR_LIN_MOX();
-	//@}
-
-	virtual vector<double> BuildFuel(double BurnUp, double HMMass, vector<IsotopicVector> FissilArray, vector<IsotopicVector> FertilArray );
-
-	private :
-
-	string fWeightPath;		//!< The full path to the file containing the @f$\alpha_{i}@f$
-	vector<double> fFuelParameter;	//!< The vector of @f$\alpha_{i}@f$
-
-};
-
-#endif
-
-- 
GitLab