Miind
CanvasParameter.hpp
Go to the documentation of this file.
1 // Copyright (c) 2005 - 2011 Marc de Kamps
2 // All rights reserved.
3 //
4 // Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
5 //
6 // * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
7 // * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation
8 // and/or other materials provided with the distribution.
9 // * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software
10 // without specific prior written permission.
11 //
12 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
13 // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
14 // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
15 // USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
16 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
17 //
18 // If you use this software in work leading to a scientific publication, you should cite
19 // the 'currently valid reference', which can be found at http://miind.sourceforge.net
20 #ifndef _CODE_LIBS_DYNAMCLIB_CANVASPARAMETER_INCLUDE_GUARD
21 #define _CODE_LIBS_DYNAMCLIB_CANVASPARAMETER_INCLUDE_GUARD
22 
23 
24 namespace MPILib {
25 
27 
31  struct CanvasParameter {
32 
35 
37  (
38  double,
39  double,
40  double,
41  double,
42  double,
43  double,
44  double,
45  double
46  );
47 
50 
51 
52  double _t_min;
53  double _t_max;
54  double _f_min;
55  double _f_max;
56  double _state_min;
57  double _state_max;
58  double _dense_min;
59  double _dense_max;
60  };
61 
62  const CanvasParameter
64  (
65  0.,
66  1.,
67  0.,
68  20.,
69  0.,
70  1.,
71  0.,
72  3.0
73  );
74 
75 }
76 
77 #endif // include guard
~CanvasParameter()
virtual destructor
CanvasParameter()
default constructor
Auxiliary class, stores the boundaries of the histograms shown in the running canvas.
const CanvasParameter DEFAULT_CANVAS(0., 1., 0., 20., 0., 1., 0., 3.0)