diff --git a/source/branches/To_Merge/Model/Equivalence/EQM_PWR_QUAD_MOX.hxx b/source/branches/To_Merge/Model/Equivalence/EQM_PWR_QUAD_MOX.hxx
deleted file mode 100644
index 94bbe4c656059512027a448d2b33c60f5df380d0..0000000000000000000000000000000000000000
--- a/source/branches/To_Merge/Model/Equivalence/EQM_PWR_QUAD_MOX.hxx
+++ /dev/null
@@ -1,70 +0,0 @@
-#ifndef _EQM_PWR_QUAD_MOX_HXX
-#define _EQM_PWR_QUAD_MOX_HXX
-
-#include "EquivalenceModel.hxx"
-
-#include <string>
-
-using namespace std;
-
-//-----------------------------------------------------------------------------//
-//! Defines an EquivalenceModel based on a quadratic fit
-
-/*!
- The aim of these class is to constuct a fuel from an equivalence model
- based on a Quadratic Pu equivalent Model
- The Plutonium content e is calculated using :
- 
- @f$ e = \alpha_{0} + \sum_{i\in Pu}^{N} \left(\alpha_{i} \cdot n_{i}\ + \sum_{j\leq i} \alpha_{ij} \cdot n_{i}\cdot n_{j}\right)@f$
- 
- @author BaM
- @version 3.0
- */
-//________________________________________________________________________
-
-class EQM_PWR_QUAD_MOX : public EquivalenceModel
-{
-	public :
-
-	/*!
-	 \name Constructor
-	 */
-	//@{
-	
-	//{
-	/// normal constructor
-	/*!
-	 Create a EQM_PWR_POL_UO2
-	 \param  WeightPath :  Path to the file containing the  @f$\alpha_{i}@f$
-	 Format :  @f$PARAM@f$   @f$\alpha_{^{238}Pu}@f$  @f$\alpha_{^{238}Pu ^{238}Pu}@f$  @f$\alpha_{^{238}Pu ^{239}Pu}@f$ .... @f$\alpha_{^{238}Pu ^{242}Pu}@f$ @f$\alpha_{^{239}Pu}@f$ ...
-	 @f$\alpha_{^{242}Pu}@f$  @f$\alpha_{^{242}Pu ^{242}Pu}@f$ @f$\alpha_{0}@f$
-	 */
-	EQM_PWR_QUAD_MOX(string WeightPath);
-	//}
-	
-	//{
-	/// Logger constructor
-	/*!
-	 Create a EQM_PWR_POL_UO2
-	 \param log : Use for the log
-	 \param  WeightPath :  Path to the file containing the  @f$\alpha_{i}@f$
-	 Format :  @f$PARAM@f$   @f$\alpha_{^{238}Pu}@f$  @f$\alpha_{^{238}Pu ^{238}Pu}@f$  @f$\alpha_{^{238}Pu ^{239}Pu}@f$ .... @f$\alpha_{^{238}Pu ^{242}Pu}@f$ @f$\alpha_{^{239}Pu}@f$ ...
-	 @f$\alpha_{^{242}Pu}@f$  @f$\alpha_{^{242}Pu ^{242}Pu}@f$ @f$\alpha_{0}@f$
-	 */
-	EQM_PWR_QUAD_MOX(CLASSLogger* log, string WeightPath);
-	//}
-	
-	~EQM_PWR_QUAD_MOX();
-	//@}
-	
-	virtual double GetFissileMolarFraction(IsotopicVector Fissil,IsotopicVector Fertil,double BurnUp);
-
-	private :
-
-	string fWeightPath;		//!< Path to the file containing the @f$\alpha_{ij}@f$
-	vector<double> fFuelParameter;	//!< vector containing the @f$\alpha_{ij}@f$
-
-};
-
-#endif
-