Code_TYMPAN  4.2.0
Industrial site acoustic simulation
Public Types | Public Member Functions | Public Attributes | List of all members
TYRegime Class Reference

#include <TYRegime.h>

Inheritance diagram for TYRegime:
Inheritance graph
[legend]
Collaboration diagram for TYRegime:
Collaboration graph
[legend]

Public Types

enum  TypeDistribution { TY_PUISSANCE_CALCULEE, TY_PUISSANCE_IMPOSEE }
 

Public Member Functions

 TYRegime ()
 
 TYRegime (const TYRegime &other)
 
virtual ~TYRegime ()
 
TYRegimeoperator= (const TYRegime &other)
 Operateur =. More...
 
bool operator== (const TYRegime &other) const
 Operateur ==. More...
 
bool operator!= (const TYRegime &other) const
 Operateur !=. More...
 
virtual bool deepCopy (const TYElement *pOther, bool copyId=true, bool pUseCopyTag=false)
 
virtual std::string toString () const
 
virtual DOM_Element toXML (DOM_Element &domElement)
 
virtual int fromXML (DOM_Element domElement)
 
void setRegimeName (const QString &nom)
 
QString getRegimeName ()
 
const QString getRegimeName () const
 
void setIsRayonnant (const bool &rayonnant)
 
bool getIsRayonnant ()
 
const bool getIsRayonnant () const
 
bool getUseAtt ()
 
const bool getUseAtt () const
 
void setUseAtt (const bool &useAtt)
 
LPTYAttenuateur getAtt ()
 
const LPTYAttenuateur getAtt () const
 
void setAtt (LPTYAttenuateur pAtt)
 
TYSpectre getSpectre ()
 
const TYSpectre getSpectre () const
 
void setSpectre (const TYSpectre &spectre)
 
- Public Member Functions inherited from TYElement
void * getAllUses ()
 
void setAllUses (void *allUses)
 
void cleanAllUses ()
 
 TYElement ()
 
 TYElement (TYElement *pParent, bool PutInInstanceList=true)
 
 TYElement (const TYElement &other, bool PutInInstanceList=true)
 
virtual ~TYElement ()
 
void setID (TYUUID id)
 
void setID (const QString &str_id)
 
const TYUUIDgetID () const
 
QString getStringID () const
 
bool hasNullID () const
 
void regenerateID ()
 
void setName (QString name)
 
void setName (std::string name)
 
virtual QString getName () const
 
void setParent (TYElement *pParent)
 
TYElementgetParent () const
 
virtual void setIsAcousticModified (bool isModified)
 
bool getIsAcousticModified ()
 
virtual void setIsGeometryModified (bool isModified)
 
bool getIsGeometryModified ()
 
TYElementoperator= (const TYElement &other)
 
bool operator== (const TYElement &other) const
 
bool operator!= (const TYElement &other) const
 
bool callFromXMLIfEqual (DOM_Element &domElement, int *pRetVal=NULL)
 
std::string getMetierName ()
 
virtual void updateCurrentCalcul (TYListID &listID, bool recursif=true)
 
virtual void getChilds (LPTYElementArray &childs, bool recursif=true)
 
virtual void setInCurrentCalcul (bool state, bool recurschild=true, bool recursparent=true)
 
virtual bool isInCurrentCalcul ()
 
void addCopy ()
 Increment le compteur de nombre de copies. More...
 
void setCopyCount (const unsigned int copyCount)
 Modifie la vaeur du compteur. More...
 
- Public Member Functions inherited from IRefCount
 IRefCount ()
 
virtual ~IRefCount ()
 
virtual int incRef ()
 
virtual int decRef ()
 
int getRefCount () const
 
- Public Member Functions inherited from OPrototype
virtual ~OPrototype ()
 
virtual OPrototypeclone () const =0
 
virtual const char * getClassName () const
 
bool isA (const char *className) const
 

Public Attributes

bool _isRayonnant
 
bool _useAtt
 
int _typeDistribution
 
TYSpectre _spectre
 
LPTYAttenuateur _pAtt
 

Additional Inherited Members

- Static Public Member Functions inherited from TYElement
static LPTYElementArray findTypeCollectionAndCallFromXML (DOM_Element parentElem, const char *type)
 
static void setLogInstances (bool log)
 
static bool getLogInstances ()
 
static TYElementgetInstance (TYUUID uuid)
 
static void purgeInstances ()
 
static bool testId (const TYUUID &id, const TYElement *pElem)
 
static TYUUID newID ()
 
static TYUUID fromString (QString id)
 
static QString toString (TYUUID &uuid)
 
static uint64 getConstructorCount ()
 
static uint64 getDestructorCount ()
 
static uint64 getIdGenerationCount ()
 
static bool getIsSavedOk ()
 
static void setIsSavedOk (const bool &toSave)
 
static void setRegenerateID (const bool &bRegenerate)
 
static bool getRegenerateID ()
 
- Static Public Member Functions inherited from OPrototype
static OPrototypefindAndClone (const char *className)
 
static int findPrototype (const char *className)
 
static OPrototypesafeDownCast (OPrototype *pObject)
 
static void add_factory (const char *, IOProtoFactory::ptr_type factory)
 
- Protected Member Functions inherited from OPrototype
 OPrototype ()
 
- Protected Attributes inherited from TYElement
QString _name
 Nom courant de l'element. More...
 
TYElement_pParent
 Reference sur l'element parent. More...
 
bool _bPutInInstanceList
 
unsigned int _copyCount
 
bool _inCurrentCalcul
 Indique si cet element est actif dans le Calcul courant. More...
 
bool _isAcousticModified
 Indicateur de modification acoustique. More...
 
bool _isGeometryModified
 Indicateur de modification de la geometrie. More...
 
LPTYElementGraphic _pGraphicObject
 L'object graphique metier associe a cet element. More...
 
void * _allUses
 Multi purpose void pointer (use for compatibility actually) More...
 
- Protected Attributes inherited from IRefCount
int m_refCount
 The reference counter. More...
 

Detailed Description

Classe pour definir les differents regimes d'un element du calcul.

Definition at line 37 of file TYRegime.h.

Member Enumeration Documentation

◆ TypeDistribution

Les differents types de calcul pour la distribution de la puissance.

Enumerator
TY_PUISSANCE_CALCULEE 

La puissance de cette element acoustique est calculee par le gestionnaire de donnees.

TY_PUISSANCE_IMPOSEE 

La puissance de cette element acoustique est imposee par l'utilisateur.

Definition at line 137 of file TYRegime.h.

Constructor & Destructor Documentation

◆ TYRegime() [1/2]

TYRegime::TYRegime ( )

Constructeur.

Definition at line 29 of file TYRegime.cpp.

Here is the call graph for this function:

◆ TYRegime() [2/2]

TYRegime::TYRegime ( const TYRegime other)

Constructeur par copie.

Definition at line 39 of file TYRegime.cpp.

◆ ~TYRegime()

TYRegime::~TYRegime ( )
virtual

Destructeur.

Definition at line 44 of file TYRegime.cpp.

Member Function Documentation

◆ deepCopy()

bool TYRegime::deepCopy ( const TYElement pOther,
bool  copyId = true,
bool  pUseCopyTag = false 
)
virtual

Effectue une copie en allouant de la memoire (deep copy) et non pas en copiant seulement les pointeurs (shallow copy). Cette methode s'utilise comme l'operateur egal. L'ID peut ne pas etre copie, le parent n'est jamais copie.

Parameters
pOtherL'element a copier.
copyIdCopie l'identifiant unique ou pas.
Returns
true si la copie est possible; false sinon.

Reimplemented from TYElement.

Reimplemented in TYUserSrcRegime.

Definition at line 87 of file TYRegime.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ fromXML()

int TYRegime::fromXML ( DOM_Element  domElement)
virtual

Extrait les informations a partir du noeud DOM passe afin de recuperer les parametres de la classe.

Parameters
domElementLe noeud DOM a partir duquel les parametres doivent etre recuperes.
Returns
1 si la recuperation des parametres a reussie.

Reimplemented from TYElement.

Reimplemented in TYUserSrcRegime.

Definition at line 127 of file TYRegime.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getAtt() [1/2]

LPTYAttenuateur TYRegime::getAtt ( )
inline

Set/Get de l'attenuateur.

Definition at line 107 of file TYRegime.h.

◆ getAtt() [2/2]

const LPTYAttenuateur TYRegime::getAtt ( ) const
inline

Set/Get de l'attenuateur.

Definition at line 112 of file TYRegime.h.

◆ getIsRayonnant() [1/2]

bool TYRegime::getIsRayonnant ( )
inline

Get/Set de l'etat rayonnant

Definition at line 90 of file TYRegime.h.

◆ getIsRayonnant() [2/2]

const bool TYRegime::getIsRayonnant ( ) const
inline

Definition at line 91 of file TYRegime.h.

◆ getRegimeName() [1/2]

QString TYRegime::getRegimeName ( )
inline

Get/Set du nom du regime

Definition at line 79 of file TYRegime.h.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getRegimeName() [2/2]

const QString TYRegime::getRegimeName ( ) const
inline

Definition at line 80 of file TYRegime.h.

Here is the call graph for this function:

◆ getSpectre() [1/2]

TYSpectre TYRegime::getSpectre ( )
inline

Get/Set du spectre associe au regime

Definition at line 122 of file TYRegime.h.

◆ getSpectre() [2/2]

const TYSpectre TYRegime::getSpectre ( ) const
inline

Get/Set du spectre associe au regime

Definition at line 127 of file TYRegime.h.

◆ getUseAtt() [1/2]

bool TYRegime::getUseAtt ( )
inline

Get/Set de la prise en compte d'un attenuateur

Definition at line 96 of file TYRegime.h.

◆ getUseAtt() [2/2]

const bool TYRegime::getUseAtt ( ) const
inline

Definition at line 97 of file TYRegime.h.

◆ operator!=()

bool TYRegime::operator!= ( const TYRegime other) const

Operateur !=.

Definition at line 82 of file TYRegime.cpp.

Here is the call graph for this function:

◆ operator=()

TYRegime & TYRegime::operator= ( const TYRegime other)

Operateur =.

Definition at line 49 of file TYRegime.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ operator==()

bool TYRegime::operator== ( const TYRegime other) const

Operateur ==.

Definition at line 69 of file TYRegime.cpp.

Here is the caller graph for this function:

◆ setAtt()

void TYRegime::setAtt ( LPTYAttenuateur  pAtt)
inline

Set/Get de l'attenuateur.

Definition at line 117 of file TYRegime.h.

◆ setIsRayonnant()

void TYRegime::setIsRayonnant ( const bool &  rayonnant)
inline

Get/Set de l'etat rayonnant

Definition at line 85 of file TYRegime.h.

◆ setRegimeName()

void TYRegime::setRegimeName ( const QString &  nom)
inline

Get/Set du nom du regime

Definition at line 74 of file TYRegime.h.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ setSpectre()

void TYRegime::setSpectre ( const TYSpectre spectre)
inline

Get/Set du spectre associe au regime

Definition at line 132 of file TYRegime.h.

◆ setUseAtt()

void TYRegime::setUseAtt ( const bool &  useAtt)
inline

Get/Set de la prise en compte d'un attenuateur

Definition at line 102 of file TYRegime.h.

◆ toString()

std::string TYRegime::toString ( ) const
virtual

Retourne une chaine de caractere donnant des informations sur cet objet (utile pour le debugage).

Returns
Une chaine de caractere informative sur cet objet.

Reimplemented from TYElement.

Reimplemented in TYUserSrcRegime.

Definition at line 107 of file TYRegime.cpp.

◆ toXML()

DOM_Element TYRegime::toXML ( DOM_Element domElement)
virtual

Construit une arborescence DOM a partir du noeud passe afin de sauvegarder les parametres au format XML.

Parameters
domElementLe noeud DOM parent a partir duquel l'arborescence doit etre creee.
Returns
Le noeud DOM nouvellement cree.

Reimplemented from TYElement.

Reimplemented in TYUserSrcRegime.

Definition at line 112 of file TYRegime.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

Member Data Documentation

◆ _isRayonnant

bool TYRegime::_isRayonnant

Definition at line 146 of file TYRegime.h.

◆ _pAtt

LPTYAttenuateur TYRegime::_pAtt

Definition at line 150 of file TYRegime.h.

◆ _spectre

TYSpectre TYRegime::_spectre

Definition at line 149 of file TYRegime.h.

◆ _typeDistribution

int TYRegime::_typeDistribution

Definition at line 148 of file TYRegime.h.

◆ _useAtt

bool TYRegime::_useAtt

Definition at line 147 of file TYRegime.h.


The documentation for this class was generated from the following files: