Salome HOME
CCAR: change in check_calcium.m4 macro for --with-cal-int=<intorlong>
[modules/kernel.git] / src / DSC / DSC_User / Datastream / AdjacentFunctor.hxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  File   : AdjacentFunctor.hxx
23 //  Author : Eric Fayolle (EDF)
24 //  Module : KERNEL
25 // Modified by : $LastChangedBy$
26 // Date        : $LastChangedDate: 2007-01-24 16:30:34 +0100 (mer, 24 jan 2007) $
27 // Id          : $Id$
28 //
29 #ifndef _ADJACENT_FUNCTOR_HXX_
30 #define _ADJACENT_FUNCTOR_HXX_
31
32 #include "ConstTraits.hxx"
33 // Pour affichage
34 #include "DisplayPair.hxx"
35 //
36
37 // Suppose que le container est trié
38 template < typename T > struct AdjacentFunctor {
39
40   typedef typename ConstTrait<T>::NonConstType TNoConst;
41   const T & _minValue;
42   T         _maxValue;
43   TNoConst  _max;
44   TNoConst  _min;
45   bool      _minFound,_maxFound,_equal;
46   
47   AdjacentFunctor(const T& value):_minValue(value),_maxValue(value),
48                                   _minFound(false),_maxFound(false),
49                                   _equal(false) {}
50
51   // Suppose que les valeurs passées en paramètres sont triées par ordre croissant
52   bool operator()(const T &v1) {
53 #ifdef _DEBUG_
54     std::cout << "AdjacentFunctor: " << _minValue << _maxValue << std::endl;
55     std::cout << "AdjacentFunctor: " << _min << _max << std::endl;
56 #endif
57     if ( v1 <= _minValue && v1 >= _maxValue)    
58     {
59       _equal= true;
60 #ifdef _DEBUG_
61       std::cout << "AdjacentFunctor: _equal : " << v1 << std::endl;   
62 #endif
63       return true; 
64     }
65     if ( v1 < _minValue )    
66     {
67       _min=v1;_minFound=true;
68 #ifdef _DEBUG_
69       std::cout << "AdjacentFunctor: _minFound : " <<_min << std::endl;
70 #endif
71     }
72     else if ( v1 > _maxValue )
73     {
74       _max=v1;_maxFound=true;
75 #ifdef _DEBUG_
76       std::cout << "AdjacentFunctor: _maxFound : " <<_max << std::endl;
77 #endif
78     }
79
80
81     /*
82     if ( v1 < _minValue)    {
83       std::cout << "EE1: _min : " << _min << std::endl;
84       _min=v1;_minFound=true;
85       std::cout << "AdjacentFunctor: _minFound : " <<_min << ", _minValue " << _minValue << std::endl;
86     } else if ( v1 > _maxValue ) {
87       _max=v1;_maxFound=true;
88       std::cout << "AdjacentFunctor: _maxFound : " <<_max << ", _maxValue " << _maxValue << std::endl;
89     } else {
90       _equal= true;
91       std::cout << "AdjacentFunctor: _equal : " << v1<< ", _minValue " << _minValue << ", _maxValue " << _maxValue << std::endl;   
92       return true; 
93     } // end if
94     */
95     
96     //std::cout << "AdjacentFunctor: _minFound : " <<_min << ", _maxFound " << _max << std::endl;
97     return  ( _minFound && _maxFound );
98   }
99
100   void setMaxValue(const T & value) {_maxValue = value;}
101   bool isEqual()   const { return _equal;}
102   bool isBounded() const { return _minFound && _maxFound;}
103   bool getBounds(TNoConst & min, TNoConst & max) const {
104 #ifdef _DEBUG_
105     std::cout << "_minFound : " <<_minFound << ", _maxFound " << _maxFound << std::endl;
106 #endif
107     if (_minFound && _maxFound ) { min=_min; max=_max; return true; }
108     return false;
109   }
110   void reset() { _minFound = false; _maxFound = false; _equal = false; };
111 };
112
113 #endif