From 1db08db6d0aa79f1f2a7b2629a7371ee325f81a1 Mon Sep 17 00:00:00 2001
From: Baptiste Mouginot <mouginot.baptiste@gmail.com>
Date: Fri, 7 Jun 2013 08:24:07 +0000
Subject: [PATCH] add version number

git-svn-id: svn+ssh://svn.in2p3.fr/class@106 0e7d625b-0364-4367-a6be-d5be4a48d228
---
 source/trunk/include/CLASS.hxx            |  2 +-
 source/trunk/include/DataBank.hxx         | 12 +++---------
 source/trunk/include/EvolutionData.hxx    | 10 ++--------
 source/trunk/include/FabricationPlant.hxx |  2 +-
 source/trunk/include/IsotopicVector.hxx   |  2 +-
 source/trunk/include/LogFile.hxx          |  2 +-
 source/trunk/include/Pool.hxx             | 24 +++++++++++------------
 source/trunk/include/Reactor.hxx          |  2 +-
 source/trunk/include/Storage.hxx          |  2 +-
 source/trunk/include/StringLine.hxx       |  2 +-
 source/trunk/include/ZAI.hxx              |  2 +-
 11 files changed, 25 insertions(+), 37 deletions(-)

diff --git a/source/trunk/include/CLASS.hxx b/source/trunk/include/CLASS.hxx
index 707f38ce1..ac0a0be0c 100755
--- a/source/trunk/include/CLASS.hxx
+++ b/source/trunk/include/CLASS.hxx
@@ -9,7 +9,7 @@
 
  
  @author BaM, Marc
- @version 0.
+ @version 2.0
  */
 #include "IsotopicVector.hxx"
 
diff --git a/source/trunk/include/DataBank.hxx b/source/trunk/include/DataBank.hxx
index 8eeb75172..dd8eb2dcc 100755
--- a/source/trunk/include/DataBank.hxx
+++ b/source/trunk/include/DataBank.hxx
@@ -5,9 +5,9 @@
  \file
  \brief Header file for DataBank class. 
  The aim of this Class is to store the evolution Database of the all decay nuclei.
- 
+
  @author BaM, Marc
- @version 0.
+ @version 2.0
  */
 
 #include <map>
@@ -24,13 +24,7 @@ class LogFile;
 
 
 
-///< A ZAIIDataBase defined a database which contain the evolution of faction of all product, subproduct (or sub(sub...sub)product) for a nucleus. 
-/*!
- The aim of this class is to handle the evolution all Information of all Nuclueus product, subproduct (or sub(sub...sub)product) as the fonction of the time.
- 
- @author BaM
- @version 1.0
- */
+
 
 template <class T> 
 class DataBank {
diff --git a/source/trunk/include/EvolutionData.hxx b/source/trunk/include/EvolutionData.hxx
index 5e72fdb1d..2696f3dc2 100755
--- a/source/trunk/include/EvolutionData.hxx
+++ b/source/trunk/include/EvolutionData.hxx
@@ -6,8 +6,9 @@
  \brief Header file for EvolutionData classes. 
   The aim of this Class is to manage evolution of a system, such as a radioactiv nuclei or a reactor. It store the evolution of daughter nuclei proportion as the function of time of the 
  
+
  @author BaM
- @version 0.
+ @version 2.0
  */
 
 #include <string>
@@ -25,13 +26,6 @@ class LogFile;
 using namespace std;
 typedef long long int cSecond;
 
-///< A ZAIIDataBase defined a database which contain the evolution of faction of all product, subproduct (or sub(sub...sub)product) for a nucleus. 
-/*!
- The aim of this class is to handle the evolution all Information of all Nucleus product, subproduct (or sub(sub...sub)product) as the fonction of the time.
- 
- @author BaM
- @version 1.0
- */
 
 EvolutionData operator*(EvolutionData const& evol, double F);
 EvolutionData operator*(double F, EvolutionData const& evol);
diff --git a/source/trunk/include/FabricationPlant.hxx b/source/trunk/include/FabricationPlant.hxx
index a64f61f35..83cef8d95 100644
--- a/source/trunk/include/FabricationPlant.hxx
+++ b/source/trunk/include/FabricationPlant.hxx
@@ -9,7 +9,7 @@
 
  
  @author BaM, Marc
- @version 0.
+ @version 2.0
  */
 
 
diff --git a/source/trunk/include/IsotopicVector.hxx b/source/trunk/include/IsotopicVector.hxx
index 270b1bd90..a203a8f24 100755
--- a/source/trunk/include/IsotopicVector.hxx
+++ b/source/trunk/include/IsotopicVector.hxx
@@ -8,7 +8,7 @@
   The aim of this Class is to manage any kind of IsotopicVector, and any operation between them : sum, substraction....
   
  @author BaM, Marc
- @version 0.
+ @version 2.0
  */
 #include "ZAI.hxx"
 
diff --git a/source/trunk/include/LogFile.hxx b/source/trunk/include/LogFile.hxx
index f4e1109c9..826bc10ca 100755
--- a/source/trunk/include/LogFile.hxx
+++ b/source/trunk/include/LogFile.hxx
@@ -10,7 +10,7 @@
  
  
  @author BaM
- @version 0.
+ @version 2.0
  */
 
 #include <string>
diff --git a/source/trunk/include/Pool.hxx b/source/trunk/include/Pool.hxx
index 031a69b12..6522e63fc 100755
--- a/source/trunk/include/Pool.hxx
+++ b/source/trunk/include/Pool.hxx
@@ -2,6 +2,18 @@
 #define __Pool_HXX__
 
 
+/*!
+ \file
+ \brief Header file for Pool class.
+ 
+ The aim of the Class is to manage evolution of all out reactor fuel. from Cooling to Waste or storage
+ 
+ 
+ @author BaM
+ @version 2.0
+ */
+
+
 
 
 #include "TNamed.h"
@@ -19,18 +31,6 @@ template <class T>
 class DataBank;
 
 
-/*!
- \file
- \brief Header file for Pool class.
- 
- The aim of the Class is to manage evolution of all out reactor fuel. from Cooling to Waste
- 
- 
- @author BaM
- @version 0.
- */
-
-
 
 class Pool : public TNamed
 {
diff --git a/source/trunk/include/Reactor.hxx b/source/trunk/include/Reactor.hxx
index b1062b23f..efd307777 100755
--- a/source/trunk/include/Reactor.hxx
+++ b/source/trunk/include/Reactor.hxx
@@ -8,7 +8,7 @@
  
  
  @author BaM
- @version 0.
+ @version 2.0
  */
 
 #include "TNamed.h"
diff --git a/source/trunk/include/Storage.hxx b/source/trunk/include/Storage.hxx
index ef7f0eb54..2f22907a4 100644
--- a/source/trunk/include/Storage.hxx
+++ b/source/trunk/include/Storage.hxx
@@ -9,7 +9,7 @@
 
  
  @author BaM
- @version 0.
+ @version 2.0
  */
 
 #include "IsotopicVector.hxx"
diff --git a/source/trunk/include/StringLine.hxx b/source/trunk/include/StringLine.hxx
index da8500370..9cd25243a 100755
--- a/source/trunk/include/StringLine.hxx
+++ b/source/trunk/include/StringLine.hxx
@@ -43,7 +43,7 @@ using namespace std;
  cout<<the<<endl<<temperature_is<<endl<<T<<endl;
  \endcode
  @author PTO
- @version 0.1
+ @version 2.01
 */
 
 class StringLine
diff --git a/source/trunk/include/ZAI.hxx b/source/trunk/include/ZAI.hxx
index 649b195b2..f066ce80e 100755
--- a/source/trunk/include/ZAI.hxx
+++ b/source/trunk/include/ZAI.hxx
@@ -8,7 +8,7 @@
 
  
  @author BaM
- @version 0.
+ @version 2.0
  */
 
 #include <string>
-- 
GitLab