diff --git a/source/branches/To_Merge/Model/Equivalence/EQM_PWR_QUAD_MOX.cxx b/source/branches/To_Merge/Model/Equivalence/EQM_PWR_QUAD_MOX.cxx
deleted file mode 100644
index 5f984d08f267e4d8d0942d65edc1473770563aac..0000000000000000000000000000000000000000
--- a/source/branches/To_Merge/Model/Equivalence/EQM_PWR_QUAD_MOX.cxx
+++ /dev/null
@@ -1,141 +0,0 @@
-#include "EQM_PWR_QUAD_MOX.hxx"
-
-#include <vector>
-
-#include "StringLine.hxx"
-#include "CLASSLogger.hxx"
-
-
-
-
-EQM_PWR_QUAD_MOX::EQM_PWR_QUAD_MOX(string WeightPath):EquivalenceModel(new CLASSLogger("EQM_PWR_QUAD_MOX.log"))
-{
-	fWeightPath = WeightPath;
-
-	ifstream DataDB(fWeightPath.c_str());							// Open the File
-	if(!DataDB)
-		WARNING << " Can't open \"" << fWeightPath << "\"" << endl;
-
-	string line;
-	int start = 0;	// First Get Fuel Parameter
-	getline(DataDB, line);
-
-	if( StringLine::NextWord(line, start, ' ') != "PARAM")
-	{
-		ERROR << "Bad Database file : " <<  fWeightPath << " Can't find the Parameter of the DataBase " << endl;
-		exit (1);
-	}
-	while(start < (int)line.size())
-		fFuelParameter.push_back(atof(StringLine::NextWord(line, start, ' ').c_str()));
-
-	INFO << fFuelParameter.size() << " have been read " << endl;
-
-
-	ZAI U8(92,238,0);
-	ZAI U5(92,235,0);
-	double U5_enrich = 0.0025;
-	fFertileList = U5*U5_enrich + U8*(1-U5_enrich);
-
-
-	ZAI Pu8(94,238,0);
-	ZAI Pu9(94,239,0);
-	ZAI Pu0(94,240,0);
-	ZAI Pu1(94,241,0);
-	ZAI Pu2(94,242,0);
-	fFissileList = Pu8*1+Pu9*1+Pu0*1+Pu1*1+Pu2*1;
-
-	SetBuildFuelFirstGuess(0.04);
-	EquivalenceModel::PrintInfo();
-
-
-}
-
-EQM_PWR_QUAD_MOX::EQM_PWR_QUAD_MOX(CLASSLogger* log, string WeightPath):EquivalenceModel(log)
-{
-	fWeightPath = WeightPath;
-
-	ifstream DataDB(fWeightPath.c_str());							// Open the File
-	if(!DataDB)
-		WARNING << " Can't open \"" << fWeightPath << "\"" << endl;
-
-	string line;
-	int start = 0;	// First Get Fuel Parameter
-	getline(DataDB, line);
-
-	if( StringLine::NextWord(line, start, ' ') != "PARAM")
-	{
-		ERROR << "Bad Database file : " <<  fWeightPath << " Can't find the Parameter of the DataBase " << endl;
-		exit (1);
-	}
-	while(start < (int)line.size())
-		fFuelParameter.push_back(atof(StringLine::NextWord(line, start, ' ').c_str()));
-
-	INFO << fFuelParameter.size() << " have been read " << endl;
-
-
-	ZAI U8(92,238,0);
-	ZAI U5(92,235,0);
-	double U5_enrich = 0.0025;
-	fFertileList = U5*U5_enrich + U8*(1-U5_enrich);
-
-
-	ZAI Pu8(94,238,0);
-	ZAI Pu9(94,239,0);
-	ZAI Pu0(94,240,0);
-	ZAI Pu1(94,241,0);
-	ZAI Pu2(94,242,0);
-	fFissileList = Pu8*1+Pu9*1+Pu0*1+Pu1*1+Pu2*1;
-
-	SetBuildFuelFirstGuess(0.04);
-	EquivalenceModel::PrintInfo();
-
-}
-
-
-
-EQM_PWR_QUAD_MOX::~EQM_PWR_QUAD_MOX()
-{
-
-}
-
-
-
-
-double EQM_PWR_QUAD_MOX::GetFissileMolarFraction(IsotopicVector Fissile,IsotopicVector Fertile,double BurnUp)
-{
-
-
-	ZAI ZAIList[6] = {ZAI(94,238,0), ZAI(94,239,0), ZAI(94,240,0), ZAI(94,241,0), ZAI(94,242,0), ZAI(95,241,0)  };
-
-	vector<double> PuCompo;
-	double Sum = Fissile.GetSumOfAll();
-
-
-	for(int i = 0; i< 5; i++)
-		PuCompo.push_back( Fissile.GetZAIIsotopicQuantity(ZAIList[i])/Sum);
-
-	PuCompo[2] += Fissile.GetZAIIsotopicQuantity(ZAIList[5])/Sum;
-	double A = 0;
-
-	if(PuCompo[0] <= PuCompo[2] && PuCompo[0] <= PuCompo[4] && PuCompo[1] + PuCompo[3] >= 0.40 && PuCompo[1] >0 )
-	{
-		int par = 0;
-		for(int j = 0 ; j < 5 ; j++)
-		{
-			A += fFuelParameter[par]  * PuCompo[j] ;
-			par++;
-			for(int i = j ; i < 5 ; i++)
-			{
-				A += fFuelParameter[par] *PuCompo[i] *PuCompo[j];
-				par++;
-			}
-		}
-		A += fFuelParameter[par];
-	}
-	else
-	{
-		cout << "the composition is not in the range of the Model" << endl;
-	}
-	return A;
-}
-