Skip to content
Snippets Groups Projects
Commit a6360f02 authored by Baptiste LENIAU's avatar Baptiste LENIAU
Browse files

add comments

git-svn-id: svn+ssh://svn.in2p3.fr/class@520 0e7d625b-0364-4367-a6be-d5be4a48d228
parent 2029adcb
No related branches found
No related tags found
No related merge requests found
...@@ -51,7 +51,7 @@ public : ...@@ -51,7 +51,7 @@ public :
//{ //{
/// CLASSLogger Constructor. /// CLASSLogger Constructor.
/*! /*!
Use create an empty Stotarage loading a CLASSLogger Use to create an empty Storage with a CLASSLogger
\param log : used for the log. \param log : used for the log.
*/ */
Storage(CLASSLogger* log); Storage(CLASSLogger* log);
...@@ -61,9 +61,9 @@ public : ...@@ -61,9 +61,9 @@ public :
//{ //{
/// Special Constructor. /// Special Constructor.
/*! /*!
Make a new reactor Make a new Storage
\param log : used for the log. \param log : used for the log.
\param evolutivedb DataBank for decay management \param evolutivedb : DataBank for decay management
*/ */
Storage(CLASSLogger* log, DecayDataBank* evolutivedb); Storage(CLASSLogger* log, DecayDataBank* evolutivedb);
//} //}
...@@ -88,32 +88,20 @@ public : ...@@ -88,32 +88,20 @@ public :
//@} //@}
//********* Get Method *********//
/*!
\name Get Method
*/
//@{
//@}
//********* Storage specific Method *********// //********* Storage specific Method *********//
/*! /*!
\name Storage specific Method \name Storage specific methods
*/ */
//@{ //@{
void TakeFractionFromStock(int IVId,double fraction); //!< Take a part from an IV in sotck; void TakeFractionFromStock(int IVId,double fraction); //!< Take a part from an IV in sotck;
void TakeFromStock(IsotopicVector isotopicvector); //!< void TakeFromStock(IsotopicVector isotopicvector); //!< Take an entire IV from stock
void AddIV(IsotopicVector isotopicvector); //!< Add an Isotopicvector to the IVArray void AddIV(IsotopicVector isotopicvector); //!< Add an Isotopicvector to the IVArray
void AddToStock(IsotopicVector isotopicvector) {AddIV(isotopicvector);} //!< Add an Isotopicvector to the IVArray void AddToStock(IsotopicVector isotopicvector) {AddIV(isotopicvector);} //!< Add an Isotopicvector to the IVArray
void RemoveEmptyStocks(); //!< delete the empty Isotopicvectors contained in IVArray void RemoveEmptyStocks(); //!< delete the empty Isotopicvector(s) contained in IVArray
//@} //@}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment