Arcane  v3.16.0.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
GlobalTimeHistoryAdder.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/* GlobalTimeHistoryAdder.h (C) 2000-2024 */
9/* */
10/* Classe permettant d'ajouter un historique de valeur global. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_CORE_GLOBALTIMEHISTORYADDER_H
13#define ARCANE_CORE_GLOBALTIMEHISTORYADDER_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/core/ITimeHistoryAdder.h"
18
19/*---------------------------------------------------------------------------*/
20/*---------------------------------------------------------------------------*/
21
22namespace Arcane
23{
24
25/*---------------------------------------------------------------------------*/
26/*---------------------------------------------------------------------------*/
27
54class ARCANE_CORE_EXPORT GlobalTimeHistoryAdder
55: public ITimeHistoryAdder
56{
57 public:
58
64 explicit GlobalTimeHistoryAdder(ITimeHistoryMng* time_history_mng);
65 ~GlobalTimeHistoryAdder() override = default;
66
67 public:
68
69 void addValue(const TimeHistoryAddValueArg& thp, Real value) override;
70 void addValue(const TimeHistoryAddValueArg& thp, Int32 value) override;
71 void addValue(const TimeHistoryAddValueArg& thp, Int64 value) override;
72 void addValue(const TimeHistoryAddValueArg& thp, RealConstArrayView values) override;
73 void addValue(const TimeHistoryAddValueArg& thp, Int32ConstArrayView values) override;
74 void addValue(const TimeHistoryAddValueArg& thp, Int64ConstArrayView values) override;
75
76 private:
77
78 ITimeHistoryMng* m_thm;
79};
80
81/*---------------------------------------------------------------------------*/
82/*---------------------------------------------------------------------------*/
83
84} // End namespace Arcane
85
86/*---------------------------------------------------------------------------*/
87/*---------------------------------------------------------------------------*/
88
89#endif
GlobalTimeHistoryAdder(ITimeHistoryMng *time_history_mng)
Constructeur.
void addValue(const TimeHistoryAddValueArg &thp, Real value) override
Méthode permettant d'ajouter une valeur à un historique.
Interface de classe permettant d'ajouter une ou plusieurs valeurs à un historique de valeurs.
Classe gérant un historique de valeurs.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
std::int64_t Int64
Type entier signé sur 64 bits.
ConstArrayView< Int32 > Int32ConstArrayView
Equivalent C d'un tableau à une dimension d'entiers 32 bits.
Definition UtilsTypes.h:569
ConstArrayView< Int64 > Int64ConstArrayView
Equivalent C d'un tableau à une dimension d'entiers 64 bits.
Definition UtilsTypes.h:567
double Real
Type représentant un réel.
std::int32_t Int32
Type entier signé sur 32 bits.
ConstArrayView< Real > RealConstArrayView
Equivalent C d'un tableau à une dimension de réels.
Definition UtilsTypes.h:575