14#include "arcane/MeshPartialVariableArrayRef.h"
15#include "arcane/ItemGroup.h"
16#include "arcane/IMesh.h"
17#include "arcane/VariableBuildInfo.h"
18#include "arcane/VariableDataTypeTraits.h"
19#include "arcane/IParallelMng.h"
30template<
typename DataType> VariableTypeInfo
31ItemPartialVariableArrayRefT<DataType>::
34 eDataType dt = VariableDataTypeTraitsT<DataType>::type();
35 return VariableTypeInfo(ik,dt,2,0,
true);
41template<
typename DataType> VariableInfo
42ItemPartialVariableArrayRefT<DataType>::
43_buildVariableInfo(
const VariableBuildInfo& vbi,
eItemKind ik)
45 VariableTypeInfo vti = _buildVariableTypeInfo(ik);
46 DataStorageTypeInfo sti = vti._internalDefaultDataStorage();
47 return VariableInfo(vbi.name(),vbi.itemFamilyName(),vbi.itemGroupName(),vbi.meshName(),vti,sti);
53template<
class DataType>
58 this->_internalInit();
59 internalSetUsed(this->isUsed());
65template<
class DataType>
70 this->_internalInit();
71 internalSetUsed(this->isUsed());
77template<
class DataType>
82 internalSetUsed(this->isUsed());
88template<
typename DataType>
void
93 m_table = this->itemGroup().localIdToIndex();
101template<
class DataType>
void
106 m_table =
rhs.m_table;
112template<
class DataType>
void
114fill(
const DataType& v)
117 operator[](
iitem).fill(v);
124template<
typename DataType>
void
125ItemPartialVariableArrayRefT<DataType>::
126copy(
const ItemPartialVariableArrayRefT<DataType>& v)
129 operator[](iitem).copy(v[iitem]);
139template<
class ItemType,
class DataType> VariableFactoryRegisterer
140MeshPartialVariableArrayRefT<ItemType,DataType>::
141m_auto_registerer(_autoCreate,_buildVariableTypeInfo());
146template<
typename ItemType,
typename DataType> VariableTypeInfo
147MeshPartialVariableArrayRefT<ItemType,DataType>::
148_buildVariableTypeInfo()
151 return BaseClass::_buildVariableTypeInfo(ik);
157template<
typename ItemType,
typename DataType> VariableInfo
158MeshPartialVariableArrayRefT<ItemType,DataType>::
159_buildVariableInfo(
const VariableBuildInfo& vbi)
162 return BaseClass::_buildVariableInfo(vbi,ik);
168template<
class ItemType,
class DataType> VariableRef*
169MeshPartialVariableArrayRefT<ItemType,DataType>::
170_autoCreate(
const VariableBuildInfo& vb)
172 return new ThatClass(vb);
178template<
class ItemType,
class DataType>
193template<
class ItemType,
class DataType>
208template<
class ItemType,
class DataType>
void
218template<
class ItemType,
class DataType>
219typename Arcane::MeshPartialVariableArrayRefT<ItemType, DataType>::GroupType
223 return GroupType(this->m_private_part->itemGroup());
Interface d'une variable.
Variable partielle scalaire sur un type d'entité du maillage.
ItemPartialVariableArrayRefT(const VariableBuildInfo &vb, eItemKind ik)
Construit une référence à la variable spécifiée dans vb.
void operator=(const ItemPartialVariableArrayRefT< DataType > &rhs)
Opérateur de recopie.
Caractéristiques des éléments du maillage.
static eItemKind kind()
Genre de l'entité
Lecteur des fichiers de maillage via la bibliothèque LIMA.
void refersTo(const MeshPartialVariableArrayRefT< ItemType, DataType > &rhs)
Positionne la référence de l'instance à la variable rhs.
MeshPartialVariableArrayRefT(const VariableBuildInfo &vb)
Construit une référence à la variable spécifiée dans vb.
GroupType itemGroup() const
Groupe associé à la grandeur.
Classe de factorisation des variables scalaires sur des entités du maillage.
Paramètres nécessaires à la construction d'une variable.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
eItemKind
Genre d'entité de maillage.
eDataType
Type d'une donnée.