14 #include "msdevstudio/MSconfig.h" 38 #ifdef ITERATOR_MEMBER_DEFECT 57 BinnerAxis * binner = binner_factory -> create (
"BinnerLinear" );
60 m_binner = factory -> create (
"Bins1DProfile" );
105 bool have_weight = w_col < UINT_MAX;
112 for (
unsigned int i = 0; i <
size; i++ )
116 double x =
m_ntuple -> valueAt ( i, x_col );
117 double y =
m_ntuple -> valueAt ( i, y_col );
120 w =
m_ntuple -> valueAt ( i, w_col );
148 return Range ( 0.0, 0.0 );
150 double max = DBL_MIN;
151 double min = DBL_MAX;
155 for (
unsigned int i = 0; i < values.size(); i++ ) {
156 double hi = values[i] + errors[i];
157 double lo = values[i] - errors[i];
158 max = std::max ( max, hi );
159 min = std::min ( min, lo );
162 return Range ( min, max );
180 double pos = DBL_MAX;
184 for (
unsigned int i = 0; i < values.size (); i++ ) {
185 double lo = values[i] - errors[i];
217 if( range.
low() < 0.0 )
return;
246 = dynamic_cast <
const DataSource * > ( object );
248 if ( datasource != 0 ) {
261 = dynamic_cast <
const DataSource * > ( object );
263 if ( datasource != 0 ) {
AxisModelBase * m_x_axis
The AxisModel along the X axis.
virtual bool isAxisBinned(const std::string &axis) const
Returns true if specified axis is binned.
A namespace to set the standard for indexing into 2 dimension data point tuple.
The base class for the BinnerAxis hierarchy.
bool acceptRow(unsigned int i, const CutList_t &cut_list) const
For row i of the column in the DataSource, returns true if all the cuts accept the row...
unsigned int m_min_bindings
The minimum number of columns that must be bound.
Part of an implementation of the Observable-Observer pattern based on the example in the GOF Patterns...
virtual void update(const Observable *object)
Implements Observer pattern.
ProjectorBase * clone()
The clone function returns an object of its own kind which is a copy of this object at this moment...
hippodraw::AxisModelBase class interface
virtual void checkScaling()
Checks and sets if an AxisModelBase object on an axis should be scaled.
virtual void willDelete(const Observable *object)
If object is the target of normalization, removes the target and sets normalization off...
std::vector< std::string > m_binding_options
The list of binding options for the Projector.
DataSource * m_proj_values
The NTuple representing the result of the projection.
ProfileProjector class interface.
BinsBase * m_binner
The binner object.
A Factory singleton class for creating objects whose class derives from BinnerAxis.
virtual void willDelete(const Observable *)
Responds to willDelete message from the observed data source.
std::vector< std::string > m_pointreps
Vector of acceptable PointReps.
virtual void willDelete(const Observable *object)
Implements Observer pattern.
double high() const
Returns the maximum of the range object.
unsigned int columns() const
Returns the number of columns or data arrays available from this DataSource.
const DataSource * m_ntuple
The pointer to the data source being projected.
virtual bool isLog() const =0
Returns a boolean describing the type of the scale of the axis.
double getPos(int column) const
Returns the minimum positive value on the specified column.
virtual void execute()
Provides the all the data to the binner.
virtual void accumulate(double x, double w_or_y=1.0, double z=1.0, double w=1.0)=0
Accumulates the data point with weight w.
hippodraw::NTuple class interface.
Base class for DataSource.
static BinnerAxisFactory * instance()
Returns a pointer to the singleton instance.
A Factory singleton class for creating objects whose class derives from BinsBase. ...
virtual void update(const Observable *)
Responds to update message from the data source.
intp size(numeric::array arr)
virtual void addPointReps()
Function to add the acceptable point reps.
virtual void changedNTuple()
This function is called when the DataSource has been changed to a new one.
double low() const
Returns the minimum of the range object.
static BinsFactory * instance()
Returns a pointer to the singleton instance.
ProfileProjector()
The default constructor.
bool isNull() const
Returns true if the receiving objects is a null object.
Expresses a range of values.
virtual void prepareValues()
Prepares the projector for plotting by executing, if needed, the binning procedure.
virtual void setBinnerOn(BinnerAxis *, hippodraw::Axes::Type axis)=0
Sets the bin calculator on specified axis.
The base class for the Projector hierarchy.
The BinningProjector is an abstract class provides most of the functionality for a projector that doe...
An NTupleProjector is a projector that projects data from an DataSource object.
virtual void reset()=0
Resets the accumulation to zero.
CutList_t m_cut_list
A list of cuts that filter the projection.
hippodraw::DataPointTuple namespace interface
virtual void update(const Observable *object)
Updates the receiving projector.
void setRange(double low, double high, double pos)
Sets the Range to the low and high values.
virtual Range dataRangeOn(hippodraw::Axes::Type) const
Returns the range of the data on the specified axis.
Range dataRange(int column) const
Returns the range of data on the specified column.
void setDirty()
Sets a flag to indicate that re-binning needs to be done.
virtual Range valueRange() const
Finds the range of the projected values.
hippodraw::BinnerAxis class interface
virtual void setRange(hippodraw::Axes::Type axis, bool const_width)
Sets the range of the selected axis.
virtual void setBinnerRange(hippodraw::Axes::Type axis, const Range &range, bool const_width)
Sets the Range of the binner.
A derived class of BinningProjector which projects to a profile display.
virtual double getPosOn(hippodraw::Axes::Type axis) const
Returns the minimum positive value of the data on a specified axis.
hippodraw::BinsBase class interface
const Range & getRange(bool scaled) const
Returns the range represented by this AxisModel.
virtual void setDirty(bool value=true)
Sets the dirty flag to value.
std::vector< unsigned int > m_columns
A vector containing indexes to the columns of the DataSource.