New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
axis.cpp in vendors/XIOS/current/src/node – NEMO

source: vendors/XIOS/current/src/node/axis.cpp @ 3428

Last change on this file since 3428 was 3428, checked in by rblod, 12 years ago

importing initial XIOS vendor drop

File size: 2.9 KB
Line 
1#include "axis.hpp"
2
3#include "attribute_template.hpp"
4#include "object_template.hpp"
5#include "group_template.hpp"
6#include "message.hpp"
7#include "type.hpp"
8#include "xmlioserver_spl.hpp"
9
10namespace xios {
11   
12   /// ////////////////////// Définitions ////////////////////// ///
13
14   CAxis::CAxis(void)
15      : CObjectTemplate<CAxis>()
16      , CAxisAttributes(), isChecked(false), relFiles()
17   { /* Ne rien faire de plus */ }
18
19   CAxis::CAxis(const StdString & id)
20      : CObjectTemplate<CAxis>(id)
21      , CAxisAttributes(), isChecked(false), relFiles()
22   { /* Ne rien faire de plus */ }
23
24   CAxis::~CAxis(void)
25   { /* Ne rien faire de plus */ }
26
27   ///---------------------------------------------------------------
28
29   const std::set<StdString> & CAxis::getRelFiles(void) const
30   {
31      return (this->relFiles);
32   }
33
34   bool CAxis::IsWritten(const StdString & filename) const
35   {
36      return (this->relFiles.find(filename) != this->relFiles.end());
37   }
38
39   void CAxis::addRelFile(const StdString & filename)
40   {
41      this->relFiles.insert(filename);
42   }
43
44   //----------------------------------------------------------------
45
46   StdString CAxis::GetName(void)   { return (StdString("axis")); }
47   StdString CAxis::GetDefName(void){ return (CAxis::GetName()); }
48   ENodeType CAxis::GetType(void)   { return (eAxis); }
49
50   //----------------------------------------------------------------
51
52   void CAxis::checkAttributes(void)
53   {
54      if (this->isChecked) return;
55      if (this->size.isEmpty())
56         ERROR("CAxis::checkAttributes(void)",<< "Attribut <size> of the axis must be specified") ;
57      StdSize size = this->size.getValue();
58     
59      StdSize zoom_begin,zoom_end, zoom_size ;
60     
61      zoom_begin = (this->zoom_begin.isEmpty()) ?  1 : this->zoom_begin.getValue() ;
62      zoom_end = (this->zoom_end.isEmpty()) ?  size : this->zoom_end.getValue() ; 
63      zoom_size = (this->zoom_size.isEmpty()) ?  size : this->zoom_size.getValue() ;
64     
65      if (this->zoom_begin.isEmpty()) zoom_begin=zoom_end-zoom_size+1 ;
66      if (this->zoom_end.isEmpty()) zoom_end=zoom_begin+zoom_size-1 ;
67      if (this->zoom_size.isEmpty()) zoom_size=zoom_end-zoom_begin+1 ;
68     
69      if ( (zoom_begin < 1) || (zoom_begin > size) || (zoom_end<1) || (zoom_end>size) || (zoom_size<1) || (zoom_size>size) || (zoom_begin>zoom_end))
70        ERROR("CAxis::checkAttributes(void)",<< "One or more attribut of <zoom_begin>, <zoom_end>, <zoom_size>, are not well specified") ;
71      this->zoom_begin.setValue(zoom_begin) ;
72      this->zoom_end.setValue(zoom_end) ;
73      this->zoom_size.setValue(zoom_size) ;
74     
75      StdSize true_size = value.getValue()->num_elements();
76      if (size != true_size)
77         ERROR("CAxis::checkAttributes(void)",
78               << "Le tableau \'value\' a une taille différente de celle indiquée dans l'attribut \'size\'")
79
80      this->isChecked = true;
81   }
82
83   ///---------------------------------------------------------------
84
85} // namespace xios
Note: See TracBrowser for help on using the repository browser.