MAGiC  V5.0
Mailleurs Automatiques de Géometries intégrés à la Cao
mstruct_analyse_cao.h
Aller à la documentation de ce fichier.
1 //####//------------------------------------------------------------
2 //####//------------------------------------------------------------
3 //####// MAGiC
4 //####// Jean Christophe Cuilliere et Vincent FRANCOIS
5 //####// Departement de Genie Mecanique - UQTR
6 //####//------------------------------------------------------------
7 //####// MAGIC est un projet de recherche de l equipe ERICCA
8 //####// du departement de genie mecanique de l Universite du Quebec a Trois Rivieres
9 //####// http://www.uqtr.ca/ericca
10 //####// http://www.uqtr.ca/
11 //####//------------------------------------------------------------
12 //####//------------------------------------------------------------
13 //####//
14 //####// mstruct_analyse_cao.h
15 //####//
16 //####//------------------------------------------------------------
17 //####//------------------------------------------------------------
18 //####// COPYRIGHT 2000-2024
19 //####// jeu 13 jun 2024 11:58:56 EDT
20 //####//------------------------------------------------------------
21 //####//------------------------------------------------------------
22 #ifndef _MSTRUCT_ANALYSE_CAO_
23 #define _MSTRUCT_ANALYSE_CAO_
24 #include "mstruct_analyse.h"
25 #include "ot_mathematique.h"
26 
27 class MSTRUCT_VES;
28 
29 
31 {
32 public:
33  MSTRUCT_ANALYSE_CAO(void);
35  std::string identifiant,
36  double largeur_colonne_volume_forme,
37  std::string nom_groupe_forme="ALL");
38  MSTRUCT_ANALYSE_CAO(MSTRUCT_ANALYSE_CAO &mdd,bool cpy_data=true);
40  virtual long get_nb_forme(void);
41  virtual long get_nb_volume(void);
42  virtual double get_volume_forme_ecart_type(void);
43  virtual double get_volume_forme_moyenne(void);
44  virtual double get_volume_forme_min(void);
45  virtual double get_volume_forme_max(void);
47  virtual double get_volume(void);
48  virtual double get_fraction_volumique(void);
49  virtual long get_type(void);
50  virtual void exporter(std::ofstream& ofstrm, long i, bool avec_entete=false, bool avec_graph=false, char* prefix_graph = (char*)"");
51  virtual void enregistrer(std::ofstream& ofstrm);
52  virtual void ouvrir(std::ifstream& ifstrm);
53  virtual void affiche_contenu(fonction_affiche *fonc);
54  virtual void executer(void);
55 protected:
56  long m_nb_forme;
57  long m_nb_volume;
63  double m_volume;
65 
66 };
67 
68 
69 #endif
virtual long get_nb_forme(void)
virtual long get_type(void)
virtual long get_nb_volume(void)
virtual double get_fraction_volumique(void)
virtual double get_volume_forme_min(void)
virtual double get_volume_forme_moyenne(void)
virtual void enregistrer(std::ofstream &ofstrm)
OT_HISTOGRAMME m_volume_forme_histogramme
virtual double get_volume_forme_max(void)
virtual double get_volume(void)
virtual double get_volume_forme_ecart_type(void)
virtual void exporter(std::ofstream &ofstrm, long i, bool avec_entete=false, bool avec_graph=false, char *prefix_graph=(char *)"")
virtual void ouvrir(std::ifstream &ifstrm)
virtual OT_HISTOGRAMME * get_distribution_volume_forme(void)
virtual void executer(void)
virtual void affiche_contenu(fonction_affiche *fonc)
void fonction_affiche(char *)
Definition: fct_taille.h:28