Qt Displays wraps a derived class of Cut1DPlotter. More...
#include <QtCut.h>


Public Member Functions | |
| void | addDataRep (const std::string &type, const DataSource *ntuple, const std::vector< std::string > &bindings) |
| Creates and adds a DataRep to the display. More... | |
| void | addDataRep (PyDataRep *pyRep) |
| Adds a DataRep created within Python. More... | |
| void | addDataRep (PyFunctionRep *pyFuncRep) |
| Adds a Function (as PyFunctionRep) More... | |
| void | addDataRepStacked (const std::string &type, const DataSource *ntuple, const std::vector< std::string > &bindings) |
| Adds a DataRep to the display by stacking, i.e. More... | |
| void | addFunction (FunctionBase *function) |
| Adds a Function (as a FunctionBase object) More... | |
| void | addObserver (hippodraw::Observer *observer) |
| Adds an observer to PlotterBase object. More... | |
| void | addTarget (QtDisplay *) |
| Adds a display as a target of the cut. More... | |
| void | addTargets (const std::vector< QtDisplay * > &targets) |
| Adds the displays as targets of the cut. More... | |
| void | addValues (const std::vector< double > &v) |
| Adds the values to the display. More... | |
| void | applyCut (QtDisplay *cut) |
| Applies a cut to the wrapped PlotterBase. More... | |
| void | applyCuts (const std::vector< QtDisplay * > &cuts) |
| Applies a cuts to the wrapped PlotterBase. More... | |
| PyDataSource * | createDataArray () const |
| Creates a data array wrapper for the contents of the display. More... | |
| PyNTuple * | createNTuple () const |
| Creates and returns an PyNTuple representing the display. More... | |
| int | currentView () |
| Return the current view index. More... | |
| std::vector< double > | cutRange () |
| Return the range of the cut. More... | |
| void | deleteView (int index) |
| Delete a view by index. More... | |
| PlotterBase * | display () |
| Returns the wrapped display object. More... | |
| double | getBinWidth (const std::string &axis) const |
| Returns the bin width on the specified axis. More... | |
| PyDataRep * | getDataRep () |
| Returns the selected DataRep in the plotter. More... | |
| const std::vector< PyDataRep * > & | getDataReps () const |
| Returns a vector of all DataReps in the plotter. More... | |
| const std::string & | getLabel (const std::string &axis) const |
| Returns the label on the specified axis. More... | |
| int | getLog (const std::string &axis) |
| Return 1 if the specified axis is logarithmically scaled. More... | |
| std::vector< double > | getRange (const std::string &axis) |
| Get the Range of the specified axis. More... | |
| const std::string & | getTitle () const |
| Returns the title of the display. More... | |
| int | nextView (bool stepForward=true) |
| Cycle through each set of plot ranges, thereby changing the view with each call. More... | |
| double | numberOfEntries () const |
| Return the number of entries in the display. More... | |
| int | numViews () |
| Return the number of stored views. More... | |
| int | plotterId () const |
| Return the Id to the plotter object. More... | |
| QtCut (const DataSource &nt, const std::vector< std::string > &binding) | |
| Create a cut. More... | |
| QtCut (const PyDataSource &nt, const std::vector< std::string > &binding) | |
| Create a cut. More... | |
| QtCut (const DataSource &source, const std::vector< std::string > &binding, QtDisplay *target, double low, double high) | |
| Constructor for creating a CutPlotter with axis binding to DataSource source, applying the TupleCut to target, and setting the range to low and high. More... | |
| QtCut (const PyDataSource &nt, const std::vector< std::string > &binding, QtDisplay *target, double low, double high) | |
| Constructor for creating a CutPlotter with axis binding to PyDataSource nt, applying the TupleCut to target, and setting the range to low and high. More... | |
| QtCut (PyDataSource &source, const std::string &label, boost::python::numeric::array array, QtDisplay *target) | |
| Constructor for creating a CutPlotter using a numarray as a mask to the target display. More... | |
| QtCut (PlotterBase *plotter) | |
| Create a cut object from a Cut[1/2]DPlotter object. More... | |
| void | reset () |
| Resets all bins. More... | |
| void | resize () |
| Restore the X and Y dimensions of the display to their saved values. More... | |
| int | saveView () |
| Save the current set of plot ranges which define a "view" for this plot. More... | |
| void | setAspectRatio (double ratio) |
| Sets the aspect ratio. More... | |
| void | setAutoRanging (const std::string &axis, bool flag) |
| Sets the auto ranging flag on specified axis. More... | |
| void | setAutoTicks (const std::string &axis, bool yes) |
| Sets the ticks to be automatic or manual. More... | |
| void | setBinWidth (const std::string &axis, double width, bool save=false) |
| Sets the bin width on the specified axis. More... | |
| void | setBinWidth (const std::string &axis, double width) |
| Sets the bin width on the specified axis. More... | |
| void | setColorMap (const std::string &name) |
| Set the color map by name. More... | |
| void | setContourLevels (const std::vector< double > &levels) |
| Set the contour levels if a ContourPointRep. More... | |
| void | setCutRange (double low, double high, const std::string &axis="x") |
| Sets the range of the cut on the chosen axis. More... | |
| void | setEnabled (bool yes) |
| Sets the enabled status. More... | |
| void | setLabel (const std::string &axis, const std::string &label) |
| Sets the label on the corresponding axis. More... | |
| void | setLog (const std::string &axis, int flag) |
| Sets the specified axis to Logarithmic binning (if applicable ) and display. More... | |
| void | setNumberOfBins (const std::string &axis, unsigned int number) |
| Sets the number of bins. More... | |
| void | setOffset (const std::string &axis, double offset) |
| Sets the offset of the bins on the specified axis. More... | |
| void | setPointRep (RepBase *rep) |
| Sets the PointRep for the display. More... | |
| void | setRange (const std::string &axis, double low, double high, bool save=false) |
| Sets the Range on the specified axis. More... | |
| void | setRange (const std::string &axis, double low, double high) |
| Sets the Range on the specified axis. More... | |
| void | setTicks (const std::string &axis, const std::vector< double > &values, const std::vector< std::string > &labels) |
| Sets the axis ticks to specified points and values. More... | |
| void | setTitle (const std::string &title) |
| Sets the title of the display. More... | |
| void | setTransform (const std::string &name) |
| Sets the Transform. More... | |
| void | setView (int index) |
| Set the view by index. More... | |
| void | toggleInverted () |
| Toggles the inversion status. More... | |
| void | unlock () |
| Unlock the QApplication in case of exception. More... | |
| void | update () |
| Updates the display. More... | |
Static Public Member Functions | |
| static void | createFits (const std::vector< std::string > &column_list, const std::vector< QtCut * > &cut_list, DataSource *ds, const std::string &filename, const std::string &dsname) |
| Static method. More... | |
| static NTuple * | createNTuple (const std::vector< std::string > &column_list, const std::vector< QtCut * > &cut_list, DataSource *ds) |
| Static method. More... | |
| static void | createTnt (const std::vector< std::string > &column_list, const std::vector< QtCut * > &cut_list, DataSource *ds, const std::string &filename, const std::string &dsname) |
| Static method. More... | |
| static void | fillCutList (std::vector< const TupleCut * > &tuple_cut_list, const std::vector< QtCut * > &cut_list) |
Protected Attributes | |
| PlotterBase * | m_plotter |
| The contained PlotterBase object. More... | |
Private Member Functions | |
| void | createCut (const DataSource &ds, const std::vector< std::string > &binding) |
| Creates an uninitialized cut. More... | |
Qt Displays wraps a derived class of Cut1DPlotter.
It locks the QApplication object before forwarding messages to the contained CutDisplay object. It unlocks the QApplication object upon return.
| QtCut | ( | const DataSource & | nt, |
| const std::vector< std::string > & | binding | ||
| ) |
Create a cut.
Definition at line 104 of file QtCut.cxx.
References QtCut::createCut(), PyApp::lock(), and PyApp::unlock().
| QtCut | ( | const PyDataSource & | nt, |
| const std::vector< std::string > & | binding | ||
| ) |
Create a cut.
Definition at line 114 of file QtCut.cxx.
References QtCut::createCut(), PyDataSource::dataSource(), PyApp::lock(), and PyApp::unlock().
| QtCut | ( | const DataSource & | source, |
| const std::vector< std::string > & | binding, | ||
| QtDisplay * | target, | ||
| double | low, | ||
| double | high | ||
| ) |
Constructor for creating a CutPlotter with axis binding to DataSource source, applying the TupleCut to target, and setting the range to low and high.
Definition at line 51 of file QtCut.cxx.
References QtCut::addTarget(), QtCut::createCut(), PyApp::lock(), QtCut::setCutRange(), and PyApp::unlock().
| QtCut | ( | const PyDataSource & | nt, |
| const std::vector< std::string > & | binding, | ||
| QtDisplay * | target, | ||
| double | low, | ||
| double | high | ||
| ) |
Constructor for creating a CutPlotter with axis binding to PyDataSource nt, applying the TupleCut to target, and setting the range to low and high.
Definition at line 65 of file QtCut.cxx.
References QtCut::addTarget(), QtCut::createCut(), PyDataSource::dataSource(), PyApp::lock(), QtCut::setCutRange(), and PyApp::unlock().
| QtCut | ( | PyDataSource & | source, |
| const std::string & | label, | ||
| boost::python::numeric::array | array, | ||
| QtDisplay * | target | ||
| ) |
Constructor for creating a CutPlotter using a numarray as a mask to the target display.
Definition at line 79 of file QtCut.cxx.
References QtCut::addTarget(), QtCut::createCut(), PyDataSource::dataSource(), PyApp::lock(), PyDataSource::saveColumnFromNumArray(), QtCut::setCutRange(), and PyApp::unlock().
| QtCut | ( | PlotterBase * | plotter | ) |
Create a cut object from a Cut[1/2]DPlotter object.
If the plotter is neither then an assert is raised.
Definition at line 123 of file QtCut.cxx.
References PyApp::lock(), QtDisplay::m_plotter, and PyApp::unlock().
|
inherited |
Creates and adds a DataRep to the display.
| type | The type of DataRep. Will be used to search for the type in the DataRepFactory. If the type doesn't exist, nothing is created. No checks are made that the new DataRep is consistent for viewing with existing ones. |
| ntuple | A pointer to the DataSource to be used. |
| bindings | The labels of the columns in the DataSource to be used. |
Definition at line 731 of file QtDisplay.cxx.
References DisplayController::addDataRep(), DisplayController::instance(), PyApp::lock(), QtDisplay::m_plotter, and PyApp::unlock().
|
inherited |
Adds a DataRep created within Python.
Definition at line 757 of file QtDisplay.cxx.
References DisplayController::addDataRep(), PyDataRep::getDataRep(), DisplayController::instance(), PyApp::lock(), QtDisplay::m_plotter, and PyApp::unlock().
|
inherited |
Adds a Function (as PyFunctionRep)
Definition at line 767 of file QtDisplay.cxx.
References DisplayController::addDataRep(), PyFunctionRep::getRep(), DisplayController::instance(), PyApp::lock(), QtDisplay::m_plotter, and PyApp::unlock().
|
inherited |
Adds a DataRep to the display by stacking, i.e.
sharing X axis but not the Y axis.
Definition at line 745 of file QtDisplay.cxx.
References DisplayController::addDataRepStacked(), DisplayController::instance(), PyApp::lock(), QtDisplay::m_plotter, and PyApp::unlock().
|
inherited |
Adds a Function (as a FunctionBase object)
Definition at line 781 of file QtDisplay.cxx.
References DisplayController::addDataRep(), FunctionController::createFunctionRep(), PlotterBase::getDataRep(), FunctionController::instance(), DisplayController::instance(), PyApp::lock(), QtDisplay::m_plotter, and PyApp::unlock().
|
inherited |
Adds an observer to PlotterBase object.
Definition at line 1262 of file QtDisplay.cxx.
References QtDisplay::m_plotter.
| void addTarget | ( | QtDisplay * | target | ) |
Adds a display as a target of the cut.
Definition at line 136 of file QtCut.cxx.
References QtDisplay::display(), CutController::instance(), PyApp::lock(), QtDisplay::m_plotter, and PyApp::unlock().
Referenced by QtCut::QtCut().
| void addTargets | ( | const std::vector< QtDisplay * > & | targets | ) |
Adds the displays as targets of the cut.
Definition at line 147 of file QtCut.cxx.
References QtDisplay::display(), i, CutController::instance(), PyApp::lock(), QtDisplay::m_plotter, num_util::size(), and PyApp::unlock().
|
inherited |
Adds the values to the display.
Definition at line 1138 of file QtDisplay.cxx.
References PyApp::lock(), QtDisplay::m_plotter, and PyApp::unlock().
|
inherited |
Applies a cut to the wrapped PlotterBase.
If cut is a wrapper for a CutPlotter, then applies the cut to the wrapped PlotterBase object, otherwise an exception is thrown.
Definition at line 1310 of file QtDisplay.cxx.
References QtDisplay::display(), CutController::instance(), PyApp::lock(), and PyApp::unlock().
|
inherited |
Applies a cuts to the wrapped PlotterBase.
If the cuts are rappers for a CutPlotter, then applies the cuts to the wrapped PlotterBase object. If any of the cuts is not wrapper for a cut, an exception will be thrown.
Definition at line 1325 of file QtDisplay.cxx.
References QtDisplay::display(), i, CutController::instance(), PyApp::lock(), num_util::size(), and PyApp::unlock().
|
private |
Creates an uninitialized cut.
Definition at line 42 of file QtCut.cxx.
References CutController::instance(), QtDisplay::m_plotter, and Color::yellow.
Referenced by QtCut::QtCut().
|
inherited |
Creates a data array wrapper for the contents of the display.
Definition at line 1289 of file QtDisplay.cxx.
References QtDisplay::createNTuple(), FunctionController::instance(), PyApp::lock(), QtDisplay::m_plotter, and PyApp::unlock().
|
static |
Static method.
Create a new NTuple using the column_list (labels) and cut_list (QtCut/CutPlotter). Then save it to a FITS file.
Definition at line 288 of file QtCut.cxx.
References QtCut::fillCutList(), FitsController::instance(), it, PyApp::lock(), QtDisplay::m_plotter, and PyApp::unlock().
|
static |
Static method.
Create a new NTuple using the column_list (labels) and cut_list (QtCut/CutPlotter). The returned NTuple is managed by Python.
Definition at line 229 of file QtCut.cxx.
References NTupleController::createNTuple(), QtCut::fillCutList(), NTupleController::instance(), it, PyApp::lock(), QtDisplay::m_plotter, and PyApp::unlock().
|
inherited |
Creates and returns an PyNTuple representing the display.
Definition at line 1147 of file QtDisplay.cxx.
References FunctionController::instance(), PyApp::lock(), QtDisplay::m_plotter, and PyApp::unlock().
Referenced by QtDisplay::createDataArray().
|
static |
Static method.
Create a new NTuple using the column_list (labels) and cut_list (QtCut/CutPlotter). Then save it to a TNT file.
Definition at line 257 of file QtCut.cxx.
References NTupleController::createNTupleToFile(), QtCut::fillCutList(), NTupleController::instance(), it, PyApp::lock(), QtDisplay::m_plotter, and PyApp::unlock().
|
inherited |
Return the current view index.
Definition at line 907 of file QtDisplay.cxx.
References PlotterBase::currentView(), and QtDisplay::m_plotter.
| std::vector< double > cutRange | ( | ) |
Return the range of the cut.
For a 1 D CutPlotter the range is returned as [Xlow, Xhi] while for a 2 D CutPlotter the range is returned as [Xlow, Xhi, Ylow, Yhi]
Definition at line 188 of file QtCut.cxx.
References QtCut::fillCutList(), QtDisplay::getRange(), Range::high(), i, PyApp::lock(), Range::low(), QtDisplay::m_plotter, and PyApp::unlock().
|
inherited |
Delete a view by index.
Definition at line 896 of file QtDisplay.cxx.
References PlotterBase::deleteView(), PyApp::lock(), QtDisplay::m_plotter, and PyApp::unlock().
|
inherited |
Returns the wrapped display object.
Definition at line 724 of file QtDisplay.cxx.
References QtDisplay::m_plotter.
Referenced by PyCanvas::addDisplay(), QtCut::addTarget(), QtCut::addTargets(), PyCanvas::addText(), PyCanvas::addTextAt(), PyCanvas::addTextAtAbs(), PyFunctionRep::addTo(), QtDisplay::applyCut(), QtDisplay::applyCuts(), PyCanvas::findSelectedView(), PyCanvas::getPickTable(), and PyCanvas::removeDisplay().
|
static |
Definition at line 324 of file QtCut.cxx.
References it, and QtDisplay::m_plotter.
Referenced by QtCut::createFits(), QtCut::createNTuple(), QtCut::createTnt(), QtCut::cutRange(), and PyFitsController::writeToFile().
|
inherited |
Returns the bin width on the specified axis.
Definition at line 1019 of file QtDisplay.cxx.
References PlotterBase::getBinWidth(), and QtDisplay::m_plotter.
|
inherited |
Returns the selected DataRep in the plotter.
Definition at line 1097 of file QtDisplay.cxx.
References PlotterBase::activePlotIndex(), PlotterBase::getDataRep(), index, PyApp::lock(), QtDisplay::m_plotter, rep, and PyApp::unlock().
|
inherited |
Returns a vector of all DataReps in the plotter.
Definition at line 1113 of file QtDisplay.cxx.
References PlotterBase::getDataRep(), PlotterBase::getNumDataReps(), i, PyApp::lock(), QtDisplay::m_plotter, QtDisplay::m_pyDataReps, and PyApp::unlock().
|
inherited |
Returns the label on the specified axis.
Definition at line 972 of file QtDisplay.cxx.
References hippodraw::Axes::convert(), PyApp::lock(), QtDisplay::m_plotter, and PyApp::unlock().
|
inherited |
Return 1 if the specified axis is logarithmically scaled.
Definition at line 1077 of file QtDisplay.cxx.
References DisplayController::getLog(), DisplayController::instance(), and QtDisplay::m_plotter.
|
inherited |
Get the Range of the specified axis.
Definition at line 829 of file QtDisplay.cxx.
References hippodraw::Axes::convert(), PlotterBase::getRange(), Range::high(), PyApp::lock(), Range::low(), QtDisplay::m_plotter, num_util::type(), and PyApp::unlock().
Referenced by QtCut::cutRange(), and QtDisplay::saveView().
|
inherited |
Returns the title of the display.
Definition at line 918 of file QtDisplay.cxx.
References PlotterBase::getTitle(), and QtDisplay::m_plotter.
|
inherited |
Cycle through each set of plot ranges, thereby changing the view with each call.
| stepForward | Direction to step through the views. |
Definition at line 878 of file QtDisplay.cxx.
References index, PyApp::lock(), QtDisplay::m_plotter, PlotterBase::nextView(), and PyApp::unlock().
|
inherited |
Return the number of entries in the display.
Definition at line 1164 of file QtDisplay.cxx.
References PlotterBase::activeProjector(), ProjectorBase::getNumberOfEntries(), and QtDisplay::m_plotter.
|
inherited |
Return the number of stored views.
Definition at line 892 of file QtDisplay.cxx.
References QtDisplay::m_plotter, and PlotterBase::numViews().
|
inherited |
Return the Id to the plotter object.
Definition at line 1219 of file QtDisplay.cxx.
References QtDisplay::m_plotter, and PlotterBase::plotterId().
|
inherited |
Resets all bins.
Definition at line 993 of file QtDisplay.cxx.
References PyApp::lock(), QtDisplay::m_plotter, and PyApp::unlock().
|
inherited |
Restore the X and Y dimensions of the display to their saved values.
Definition at line 1172 of file QtDisplay.cxx.
References DisplayController::getLog(), DisplayController::instance(), PyApp::lock(), QtDisplay::m_binWidths, QtDisplay::m_plotter, QtDisplay::m_ranges, PlotterBase::setAutoRanging(), PlotterBase::setBinWidth(), QtDisplay::setLog(), PlotterBase::setRange(), and PyApp::unlock().
|
inherited |
Save the current set of plot ranges which define a "view" for this plot.
Definition at line 850 of file QtDisplay.cxx.
References QtDisplay::getRange(), QtDisplay::m_plotter, QtDisplay::m_ranges, and PlotterBase::saveView().
|
inherited |
Sets the aspect ratio.
Definition at line 1129 of file QtDisplay.cxx.
References PyApp::lock(), QtDisplay::m_plotter, PlotterBase::setAspectRatio(), and PyApp::unlock().
|
inherited |
Sets the auto ranging flag on specified axis.
Definition at line 1087 of file QtDisplay.cxx.
References hippodraw::Axes::convert(), PyApp::lock(), QtDisplay::m_plotter, PlotterBase::setAutoRanging(), num_util::type(), and PyApp::unlock().
|
inherited |
Sets the ticks to be automatic or manual.
Definition at line 1280 of file QtDisplay.cxx.
References PyApp::lock(), QtDisplay::m_plotter, and PyApp::unlock().
|
inherited |
Sets the bin width on the specified axis.
Definition at line 1000 of file QtDisplay.cxx.
References PyApp::lock(), QtDisplay::m_binWidths, QtDisplay::m_plotter, PlotterBase::setBinWidth(), and PyApp::unlock().
Referenced by QtDisplay::setBinWidth().
|
inherited |
Sets the bin width on the specified axis.
This version is needed since Boost.Python cannot accommodate default arguments directly.
Definition at line 1026 of file QtDisplay.cxx.
References PyApp::lock(), QtDisplay::setBinWidth(), and PyApp::unlock().
|
inherited |
Set the color map by name.
Definition at line 1228 of file QtDisplay.cxx.
References i, BinToColorFactory::instance(), PyApp::lock(), QtDisplay::m_plotter, rep, and PyApp::unlock().
|
inherited |
Set the contour levels if a ContourPointRep.
Definition at line 938 of file QtDisplay.cxx.
References PlotterBase::activePlotIndex(), PlotterBase::getDataRep(), DataRep::getProjector(), PyApp::lock(), QtDisplay::m_plotter, RepBase::name(), Observable::notifyObservers(), rep, PlotterBase::representation(), and PyApp::unlock().
| void setCutRange | ( | double | low, |
| double | high, | ||
| const std::string & | axis = "x" |
||
| ) |
Sets the range of the cut on the chosen axis.
The choice of axis matters only when a 2D cut is being talked about
Definition at line 164 of file QtCut.cxx.
References hippodraw::Axes::convert(), PyApp::lock(), QtDisplay::m_plotter, num_util::type(), and PyApp::unlock().
Referenced by QtCut::QtCut().
| void setEnabled | ( | bool | yes | ) |
Sets the enabled status.
Sets the enabled status of the CutPlotter. A plotter that is disabled keeps its target but does not apply the cut.
Definition at line 209 of file QtCut.cxx.
References PyApp::lock(), QtDisplay::m_plotter, and PyApp::unlock().
|
inherited |
Sets the label on the corresponding axis.
Definition at line 959 of file QtDisplay.cxx.
References hippodraw::Axes::convert(), PyApp::lock(), QtDisplay::m_plotter, PlotterBase::setLabel(), and PyApp::unlock().
|
inherited |
Sets the specified axis to Logarithmic binning (if applicable ) and display.
Definition at line 1066 of file QtDisplay.cxx.
References hippodraw::Axes::convert(), DisplayController::instance(), PyApp::lock(), QtDisplay::m_plotter, DisplayController::setLog(), num_util::type(), PyApp::unlock(), and yes.
Referenced by QtDisplay::resize().
|
inherited |
Sets the number of bins.
Definition at line 984 of file QtDisplay.cxx.
References PyApp::lock(), QtDisplay::m_plotter, PlotterBase::setNumberOfBins(), and PyApp::unlock().
|
inherited |
Sets the offset of the bins on the specified axis.
Definition at line 1033 of file QtDisplay.cxx.
References hippodraw::Axes::convert(), DisplayController::instance(), PyApp::lock(), QtDisplay::m_plotter, DisplayController::setOffset(), num_util::type(), and PyApp::unlock().
|
inherited |
Sets the PointRep for the display.
Definition at line 924 of file QtDisplay.cxx.
References PyApp::lock(), QtDisplay::m_plotter, PlotterBase::setRepresentation(), and PyApp::unlock().
|
inherited |
Sets the Range on the specified axis.
Definition at line 801 of file QtDisplay.cxx.
References PyApp::lock(), QtDisplay::m_plotter, QtDisplay::m_ranges, PlotterBase::setRange(), and PyApp::unlock().
Referenced by QtDisplay::setRange().
|
inherited |
Sets the Range on the specified axis.
This version is needed since Boost.Python cannot accommodate default arguments directly.
Definition at line 820 of file QtDisplay.cxx.
References PyApp::lock(), QtDisplay::setRange(), and PyApp::unlock().
|
inherited |
Sets the axis ticks to specified points and values.
Definition at line 1269 of file QtDisplay.cxx.
References PyApp::lock(), QtDisplay::m_plotter, and PyApp::unlock().
|
inherited |
Sets the title of the display.
Definition at line 911 of file QtDisplay.cxx.
References PyApp::lock(), QtDisplay::m_plotter, PlotterBase::setTitle(), and PyApp::unlock().
|
inherited |
Sets the Transform.
Definition at line 1045 of file QtDisplay.cxx.
References DisplayController::instance(), PyApp::lock(), QtDisplay::m_plotter, DisplayController::setTransform(), and PyApp::unlock().
|
inherited |
Set the view by index.
Definition at line 866 of file QtDisplay.cxx.
References PyApp::lock(), QtDisplay::m_plotter, PlotterBase::setView(), and PyApp::unlock().
| void toggleInverted | ( | ) |
Toggles the inversion status.
Definition at line 219 of file QtCut.cxx.
References PyApp::lock(), QtDisplay::m_plotter, and PyApp::unlock().
|
inherited |
Unlock the QApplication in case of exception.
Definition at line 1062 of file QtDisplay.cxx.
References PyApp::unlock().
|
inherited |
Updates the display.
Definition at line 1251 of file QtDisplay.cxx.
References PyApp::lock(), QtDisplay::m_plotter, and PyApp::unlock().
|
protectedinherited |
The contained PlotterBase object.
Definition at line 97 of file QtDisplay.h.
Referenced by QtDisplay::addDataRep(), QtDisplay::addDataRepStacked(), QtDisplay::addFunction(), QtDisplay::addObserver(), QtCut::addTarget(), QtCut::addTargets(), QtDisplay::addValues(), QtCut::createCut(), QtDisplay::createDataArray(), QtCut::createFits(), QtCut::createNTuple(), QtDisplay::createNTuple(), QtCut::createTnt(), QtDisplay::currentView(), QtCut::cutRange(), QtDisplay::deleteView(), QtDisplay::display(), QtCut::fillCutList(), QtDisplay::getBinWidth(), QtDisplay::getDataRep(), QtDisplay::getDataReps(), QtDisplay::getLabel(), QtDisplay::getLog(), QtDisplay::getRange(), QtDisplay::getTitle(), QtDisplay::nextView(), QtDisplay::numberOfEntries(), QtDisplay::numViews(), QtDisplay::plotterId(), QtCut::QtCut(), QtDisplay::QtDisplay(), QtDisplay::reset(), QtDisplay::resize(), QtDisplay::saveView(), QtDisplay::setAspectRatio(), QtDisplay::setAutoRanging(), QtDisplay::setAutoTicks(), QtDisplay::setBinWidth(), QtDisplay::setColorMap(), QtDisplay::setContourLevels(), QtCut::setCutRange(), QtCut::setEnabled(), QtDisplay::setLabel(), QtDisplay::setLog(), QtDisplay::setNumberOfBins(), QtDisplay::setOffset(), QtDisplay::setPointRep(), QtDisplay::setRange(), QtDisplay::setTicks(), QtDisplay::setTitle(), QtDisplay::setTransform(), QtDisplay::setView(), QtCut::toggleInverted(), and QtDisplay::update().