diff --git a/NPLib/Tools/NPEnergyLoss.cxx b/NPLib/Tools/NPEnergyLoss.cxx
index f7bd696f5ab6999c5b120360e1422d6f3ea20392..cf6d582c19f912142b31558ed86d7280c232085e 100644
--- a/NPLib/Tools/NPEnergyLoss.cxx
+++ b/NPLib/Tools/NPEnergyLoss.cxx
@@ -1,3 +1,35 @@
+/*****************************************************************************
+ * Copyright (C) 2009 	this file is part of the NPTool Project              *
+ *                                                                           *
+ * For the licensing terms see $NPTOOL/Licence/NPTool_Licence                *
+ * For the list of contributors see $NPTOOL/Licence/Contributors             *
+ *****************************************************************************/
+
+/*****************************************************************************
+ *                                                                           *
+ * Original Author :  Adrien MATTA    contact address: matta@ipno.in2p3.fr   *
+ *                                                                           *
+ * Creation Date   : April 2009                                              *
+ * Last update     :                                                         *
+ *---------------------------------------------------------------------------*
+ * Decription:                                                               *
+ *  Deal with energy loss on basis of a dEdX input file, from SRIM or LISE++ *
+ *   The class can be used to evaluate energy loss in material or to Evaluate* 
+ *   initial energy before crossing the material.                            *
+ *                                                                           *
+ *   The use of Interpolator derived form the GSL insure a very good speed of*
+ *   execution.                                                              *
+ *                                                                           *
+ *   Table Should come in the following unit:                                *
+ *   Particle Energy: MeV/u                                                  *
+ *   dEdX:            MeV/micrometer                                         *
+ *---------------------------------------------------------------------------*
+ * Comment:                                                                  *
+ *                                                                           *
+ *                                                                           *
+ *****************************************************************************/
+ 
+
 #include <iostream>
 #include <fstream>
 #include <cmath>
diff --git a/NPLib/Tools/NPEnergyLoss.h b/NPLib/Tools/NPEnergyLoss.h
index 4dd07068de665d8e2986d29aec22b2ad3f79f694..10616258d3f930beb127ad52d6e1e5d5f0543d9f 100644
--- a/NPLib/Tools/NPEnergyLoss.h
+++ b/NPLib/Tools/NPEnergyLoss.h
@@ -1,6 +1,36 @@
 #ifndef __EnergyLoss__
 #define __EnergyLoss__
+/*****************************************************************************
+ * Copyright (C) 2009 	this file is part of the NPTool Project              *
+ *                                                                           *
+ * For the licensing terms see $NPTOOL/Licence/NPTool_Licence                *
+ * For the list of contributors see $NPTOOL/Licence/Contributors             *
+ *****************************************************************************/
 
+/*****************************************************************************
+ *                                                                           *
+ * Original Author :  Adrien MATTA    contact address: matta@ipno.in2p3.fr   *
+ *                                                                           *
+ * Creation Date   : April 2009                                              *
+ * Last update     :                                                         *
+ *---------------------------------------------------------------------------*
+ * Decription:                                                               *
+ *  Deal with energy loss on basis of a dEdX input file, from SRIM or LISE++ *
+ *   The class can be used to evaluate energy loss in material or to Evaluate* 
+ *   initial energy before crossing the material.                            *
+ *                                                                           *
+ *   The use of Interpolator derived form the GSL insure a very good speed of*
+ *   execution.                                                              *
+ *                                                                           *
+ *   Table Should come in the following unit:                                *
+ *   Particle Energy: MeV/u                                                  *
+ *   dEdX:            MeV/micrometer                                         *
+ *---------------------------------------------------------------------------*
+ * Comment:                                                                  *
+ *                                                                           *
+ *                                                                           *
+ *****************************************************************************/
+ 
 #include <string>
 #include <vector>
 using namespace std ;
diff --git a/NPLib/Tools/NPReaction.cxx b/NPLib/Tools/NPReaction.cxx
index 8517a5a33272de6e489d019c79c75d30186786f7..dfb319ab5df675571944d333767e8acb9e9a30ea 100644
--- a/NPLib/Tools/NPReaction.cxx
+++ b/NPLib/Tools/NPReaction.cxx
@@ -1,3 +1,36 @@
+/*****************************************************************************
+ * Copyright (C) 2009 	this file is part of the NPTool Project              *
+ *                                                                           *
+ * For the licensing terms see $NPTOOL/Licence/NPTool_Licence                *
+ * For the list of contributors see $NPTOOL/Licence/Contributors             *
+ *****************************************************************************/
+
+/*****************************************************************************
+ *                                                                           *
+ * Original Author :  Adrien MATTA    contact address: matta@ipno.in2p3.fr   *
+ *                                                                           *
+ * Creation Date   : March 2009                                              *
+ * Last update     :                                                         *
+ *---------------------------------------------------------------------------*
+ * Decription:                                                               *
+ *	This class deal with Two Body transfert Reaction                         *
+ *	Physical parameter (Nuclei mass) are loaded from the nubtab03.asc file   *
+ *	(2003 nuclear table of isotopes mass).                                   *
+ *	                                                                         *
+ *	KineRelativistic: Used in NPSimulation                                   *
+ *	A relativistic calculation is made to compute Light and Heavy nuclei     * 
+ *	angle given the Theta CM angle.                                          *
+ *	                                                                         * 
+ *	ReconstructRelativistic: Used in NPAnalysis                              *
+ *	A relativistic calculation is made to compute Excitation energy given the*
+ *	light angle and energy in Lab frame.                                     *
+ *	                                                                         *
+ *---------------------------------------------------------------------------*
+ * Comment:                                                                  *
+ *                                                                           *
+ *                                                                           *
+ *****************************************************************************/
+ 
 #include <iostream>
 #include <fstream>
 #include <string>
diff --git a/NPLib/Tools/NPReaction.h b/NPLib/Tools/NPReaction.h
index 80a076a93b0e1ad54d9a4b1a4a1f7b28ca4c087b..3ab556da14523e1786fd56ccfe701af5d0af30a5 100644
--- a/NPLib/Tools/NPReaction.h
+++ b/NPLib/Tools/NPReaction.h
@@ -1,6 +1,37 @@
 #ifndef __REACTION__
 #define __REACTION__
+/*****************************************************************************
+ * Copyright (C) 2009 	this file is part of the NPTool Project              *
+ *                                                                           *
+ * For the licensing terms see $NPTOOL/Licence/NPTool_Licence                *
+ * For the list of contributors see $NPTOOL/Licence/Contributors             *
+ *****************************************************************************/
 
+/*****************************************************************************
+ *                                                                           *
+ * Original Author :  Adrien MATTA    contact address: matta@ipno.in2p3.fr   *
+ *                                                                           *
+ * Creation Date   : March 2009                                              *
+ * Last update     :                                                         *
+ *---------------------------------------------------------------------------*
+ * Decription:                                                               *
+ *	This class deal with Two Body transfert Reaction                         *
+ *	Physical parameter (Nuclei mass) are loaded from the nubtab03.asc file   *
+ *	(2003 nuclear table of isotopes mass).                                   *
+ *	                                                                         *
+ *	KineRelativistic: Used in NPSimulation                                   *
+ *	A relativistic calculation is made to compute Light and Heavy nuclei     * 
+ *	angle given the Theta CM angle.                                          *
+ *	                                                                         * 
+ *	ReconstructRelativistic: Used in NPAnalysis                              *
+ *	A relativistic calculation is made to compute Excitation energy given the*
+ *	light angle and energy in Lab frame.                                     *
+ *	                                                                         *
+ *---------------------------------------------------------------------------*
+ * Comment:                                                                  *
+ *                                                                           *
+ *                                                                           *
+ *****************************************************************************/
 // C++ header
 #include <string>
 
diff --git a/NPLib/VDetector/VDetector.cxx b/NPLib/VDetector/VDetector.cxx
index 30df4fff2fddb5a12675a51131ce6a810da38ec6..877bb38e373022ae6bca8dd8bbea14ad2c3a6699 100644
--- a/NPLib/VDetector/VDetector.cxx
+++ b/NPLib/VDetector/VDetector.cxx
@@ -1,4 +1,28 @@
-#include "VDetector.h"
+/*****************************************************************************
+ * Copyright (C) 2009 	this file is part of the NPTool Project              *
+ * 				                                                             *
+ * For the licensing terms see $NPTOOL/Licence/NPTool_Licence                *
+ * For the list of contributors see $NPTOOL/Licence/Contributors             *
+ *****************************************************************************/
+
+/*****************************************************************************
+ *                                                                           *
+ * Original Author :  Adrien MATTA    contact address: matta@ipno.in2p3.fr   *
+ *                                                                           *
+ * Creation Date   :   June 2009                                             *
+ * Last update     :                                                         *
+ *---------------------------------------------------------------------------*
+ * Decription:  Class VDetector (virtual) for NPAnalysis                     *
+ * All detector class used in NPAnalysis should derived from this virtual    *
+ *  class. Those VDetector daughter will deal with geometry, calibration and *
+ *  basic data treatment.                                                    *
+ *  	                                                                     *
+ *---------------------------------------------------------------------------*
+ * Comment:                                                                  *
+ *   See MUST2 array for exemple of VDetector derived class                  *
+ *                                                                           *
+ *****************************************************************************/
+ #include "VDetector.h"
 
 using namespace NPA ;
 
diff --git a/NPLib/VDetector/VDetector.h b/NPLib/VDetector/VDetector.h
index c2f4461bf1450c908048687e3e0d1d7f3f612181..c10a4f39c77954e97c11474a8ed2fba0adefab11 100644
--- a/NPLib/VDetector/VDetector.h
+++ b/NPLib/VDetector/VDetector.h
@@ -1,6 +1,29 @@
 #ifndef VDectector_H
 #define VDectector_H
+/*****************************************************************************
+ * Copyright (C) 2009 	this file is part of the NPTool Project              *
+ * 				                                                             *
+ * For the licensing terms see $NPTOOL/Licence/NPTool_Licence                *
+ * For the list of contributors see $NPTOOL/Licence/Contributors             *
+ *****************************************************************************/
 
+/*****************************************************************************
+ *                                                                           *
+ * Original Author :  Adrien MATTA    contact address: matta@ipno.in2p3.fr   *
+ *                                                                           *
+ * Creation Date   :   June 2009                                             *
+ * Last update     :                                                         *
+ *---------------------------------------------------------------------------*
+ * Decription:  Class VDetector (virtual) for NPAnalysis                     *
+ * All detector class used in NPAnalysis should derived from this virtual    *
+ *  class. Those VDetector daughter will deal with geometry, calibration and *
+ *  basic data treatment.                                                    *
+ *  	                                                                     *
+ *---------------------------------------------------------------------------*
+ * Comment:                                                                  *
+ *   See MUST2 array for exemple of VDetector derived class                  *
+ *                                                                           *
+ *****************************************************************************/
 // STL header
 #include <string>