Forked from
sens / CLASS
923 commits behind the upstream repository.
-
BaM authored
git-svn-id: svn+ssh://svn.in2p3.fr/class@598 0e7d625b-0364-4367-a6be-d5be4a48d228
BaM authoredgit-svn-id: svn+ssh://svn.in2p3.fr/class@598 0e7d625b-0364-4367-a6be-d5be4a48d228
CLASSFuel.hxx 1.63 KiB
#ifndef _CLASSFUEL_
#define _CLASSFUEL_
/*!
\file
\brief Header file for CLASSFuel class.
@author BaM
@version 2.0
*/
#include <string>
#include <fstream>
#include "CLASSObject.hxx"
#include "PhysicsModels.hxx"
#include "EvolutionData.hxx"
using namespace std;
//-----------------------------------------------------------------------------//
//! Allows to define PhysicsModels & EvolutionData as a CLASSFuel
/*!
Define a CLASS Object.
The aim of these class is to handle PhysicsModels &
EvolutionData as a CLASSFuel .
@author BaM
@version 3.0
*/
//________________________________________________________________________
class CLASSFuel : public CLASSObject
{
public :
/*!
\name Constructor/Desctructor
*/
//@{
//{
/// EvolutionData Constructor.
/*!
Make a new CLASSObject
/param evo : EvolutionData stored
*/
CLASSFuel(EvolutionData* evo);
//}
//{
/// PhysicsModels Constructor.
/*!
Make a new CLASSObject
/param evo : PhysicsModels stored
*/
CLASSFuel(PhysicsModels* evo);
//}
//@}
virtual CLASSFuel* Clone() { return new CLASSFuel(*this); } //!< Correct way to copy a CLASSFuel in case of derivation
EvolutionData* GetEvolutionData() {return fEvolutionData;} //!< Return the EvolutionData (NULL if PhysicsModels)
PhysicsModels* GetPhysicsModels() {return fPhysicsModels;} //!< Return the PhysicsModels (NULL if EvolutionData)
using CLASSObject::SetName;
using CLASSObject::GetName;
protected :
private :
EvolutionData* fEvolutionData; //!< the EvolutionData (NULL if PhysicsModels)
PhysicsModels* fPhysicsModels; //!< the PhysicsModels (NULL if EvolutionData)
};
#endif