Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
MeshTimeHistoryAdder.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2024 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com)
4// See the top-level COPYRIGHT file for details.
5// SPDX-License-Identifier: Apache-2.0
6//-----------------------------------------------------------------------------
7/*---------------------------------------------------------------------------*/
8/* MeshTimeHistoryAdder.h (C) 2000-2024 */
9/* */
10/* Classe permettant d'ajouter un historique de valeur lié à un maillage. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_CORE_MESHTIMEHISTORYADDER_H
13#define ARCANE_CORE_MESHTIMEHISTORYADDER_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/core/ITimeHistoryAdder.h"
18#include "arcane/core/IParallelMng.h"
19#include "arcane/core/MeshHandle.h"
20
21/*---------------------------------------------------------------------------*/
22/*---------------------------------------------------------------------------*/
23
24namespace Arcane
25{
26
27/*---------------------------------------------------------------------------*/
28/*---------------------------------------------------------------------------*/
29
74class ARCANE_CORE_EXPORT MeshTimeHistoryAdder
75: public ITimeHistoryAdder
76{
77 public:
78
86 ~MeshTimeHistoryAdder() override = default;
87
88 public:
89
90 void addValue(const TimeHistoryAddValueArg& thp, Real value) override;
91 void addValue(const TimeHistoryAddValueArg& thp, Int32 value) override;
92 void addValue(const TimeHistoryAddValueArg& thp, Int64 value) override;
93 void addValue(const TimeHistoryAddValueArg& thp, RealConstArrayView values) override;
94 void addValue(const TimeHistoryAddValueArg& thp, Int32ConstArrayView values) override;
95 void addValue(const TimeHistoryAddValueArg& thp, Int64ConstArrayView values) override;
96
97 private:
98
99 ITimeHistoryMng* m_thm;
100 MeshHandle m_mesh_handle;
101};
102
103/*---------------------------------------------------------------------------*/
104/*---------------------------------------------------------------------------*/
105
106} // End namespace Arcane
107
108/*---------------------------------------------------------------------------*/
109/*---------------------------------------------------------------------------*/
110
111#endif
Interface de classe permettant d'ajouter une ou plusieurs valeurs à un historique de valeurs.
Classe gérant un historique de valeurs.
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:120
Handle sur un maillage.
Definition MeshHandle.h:47
Classe permettant d'ajouter une ou plusieurs valeurs à un historique de valeurs.
Vue constante d'un tableau de type T.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-