#include <TGo4CondArray.h>
Inheritance diagram for TGo4CondArray:
Public Member Functions | |
TGo4CondArray () | |
TGo4CondArray (const char *name, Int_t elements, const char *type) | |
Constructor. | |
TGo4CondArray (const char *name, Int_t elements, Int_t contype) | |
Constructor. | |
virtual | ~TGo4CondArray () |
virtual TGo4ConditionPainter * | CreatePainter () |
Factory method to generate the subclass implementation for painter. | |
virtual void | Draw (Option_t *opt="") |
Reimplement Draw to set painted flag for all array conditions. | |
virtual void | SetPainter (TGo4ConditionPainter *painter) |
Replace default painter of this condition by external one. | |
virtual TGo4Condition * | GetActiveCondition () |
Access to the currently selected condition. | |
TGo4Condition * | At (Int_t i) |
Returns condition object i from object array. | |
TGo4WinCond * | Win (Int_t i) |
Returns window condition object i from object array. | |
TGo4PolyCond * | Poly (Int_t i) |
Returns polygon condition object i from object array. | |
TGo4Condition * | operator[] (Int_t i) |
Returns condition object i from object array. | |
virtual Bool_t | Test (Double_t x, Double_t y) |
Test currently selected condition(single edit mode). | |
virtual Bool_t | Test (Double_t x) |
Test currently selected condition(single edit mode). | |
virtual Double_t | GetXLow () |
Noop, return true. | |
virtual Double_t | GetXUp () |
virtual Double_t | GetYLow () |
virtual Double_t | GetYUp () |
virtual void | SetValues (Double_t low1, Double_t up1) |
Calls SetValues for all conditions (multi edit mode) or for currently selected (single edit mode). | |
virtual void | SetValues (Double_t low1, Double_t up1, Double_t low2, Double_t up2) |
Calls SetValues for all conditions (multi edit mode) or for currently selected (single edit mode). | |
virtual void | SetValues (TCutG *newcut) |
Calls SetValues for all conditions (multi edit mode) or for currently selected (single edit mode). | |
void | PrintCondition (Bool_t points) |
Calls Print for all conditions in the array. | |
virtual void | PrintBar () |
Prints counters and bar. | |
virtual Int_t | GetNumberOfConditions () |
for condition aggregates: return total number of conditions, i.e.size of condition array | |
Int_t | GetNumber () const |
Returns number of conditions in array. | |
const char * | GetType () const |
Returns class name of conditions. | |
void | GetType (Int_t &type) const |
Returns condition type ID (kWINDOW=1 or kPOLYGON=2). | |
virtual void | Enable () |
Calls Enable for all conditions (multi edit mode) or for currently selected (single edit mode). | |
virtual void | Disable (Bool_t result) |
Calls Disable for all conditions (multi edit mode) or for currently selected (single edit mode). | |
virtual void | Invert (Bool_t on) |
Calls Invert for all conditions (multi edit mode) or for currently selected (single edit mode). | |
virtual void | MarkReset (Bool_t on) |
defines if condition counters shall be reset in UpdateFrom method | |
virtual void | ResetCounts () |
Calls ResetCounts for all conditions (multi edit mode) or for currently selected (single edit mode). | |
virtual Int_t | Counts () |
Return number of calls of the Test method. | |
virtual Int_t | TrueCounts () |
Return number of true results of the Test method call. | |
virtual void | GetFlags (Bool_t *enabled, Bool_t *lastresult, Bool_t *markreset, Bool_t *result, Bool_t *truevalue, Bool_t *falsevalue) |
Sets values of internal boolean flags to external variables. | |
virtual void | SetVisible (Bool_t on) |
we overwrite single condition visibility setter | |
virtual Bool_t | IsVisible () |
we overwrite single condition visibility getter | |
virtual void | SetChanged (Bool_t on) |
we overwrite single condition changed property | |
virtual Int_t | IsChanged () |
we overwrite single condition changed property | |
virtual void | SetLabelDraw (Bool_t on) |
virtual Bool_t | IsLabelDraw () |
virtual void | SetLimitsDraw (Bool_t on) |
virtual Bool_t | IsLimitsDraw () |
virtual void | SetIntDraw (Bool_t on) |
virtual Bool_t | IsIntDraw () |
virtual void | SetXMeanDraw (Bool_t on) |
virtual Bool_t | IsXMeanDraw () |
virtual void | SetXRMSDraw (Bool_t on) |
virtual Bool_t | IsXRMSDraw () |
virtual void | SetYMeanDraw (Bool_t on) |
virtual Bool_t | IsYMeanDraw () |
virtual void | SetYRMSDraw (Bool_t on) |
virtual Bool_t | IsYRMSDraw () |
virtual void | SetXMaxDraw (Bool_t on) |
virtual Bool_t | IsXMaxDraw () |
virtual void | SetYMaxDraw (Bool_t on) |
virtual Bool_t | IsYMaxDraw () |
virtual void | SetCMaxDraw (Bool_t on) |
virtual Bool_t | IsCMaxDraw () |
virtual Double_t | GetIntegral (TH1 *histo, Option_t *opt="") |
Calculate value for histogram inside condition limits. | |
virtual Double_t | GetMean (TH1 *histo, Int_t axis=1) |
Calculate value for histogram inside condition limits. | |
virtual Double_t | GetRMS (TH1 *histo, Int_t axis=1) |
Calculate value for histogram inside condition limits. | |
virtual Double_t | GetXMax (TH1 *histo) |
Calculate value for histogram inside condition limits. | |
virtual Double_t | GetYMax (TH1 *histo) |
Calculate value for histogram inside condition limits. | |
virtual Double_t | GetCMax (TH1 *histo) |
Calculate value for histogram inside condition limits. | |
virtual Bool_t | IsPolygonType () |
virtual Bool_t | IsArrayType () |
virtual void | SetCurrentIndex (Int_t ix) |
set index for array type subclasses | |
virtual Int_t | GetCurrentIndex () |
get index for array type subclasses | |
virtual Bool_t | UpdateFrom (TGo4Condition *cond, Bool_t counts) |
Copy values from cond to this. | |
virtual Int_t | GetMemorySize () |
Private Attributes | |
TObjArray * | condarr |
The object array of conditions. | |
Int_t | fiNumCond |
Number of conditions in array. | |
Int_t | fiType |
Condition type ID (kWINDOW or kPOLYGON). | |
Int_t | fiSelectedCond |
Index of selected condition. |
|
Definition at line 51 of file TGo4CondArray.cxx. |
|
Constructor. type can be "TGO4WinCond" or "TGO4PolyCond" Definition at line 90 of file TGo4CondArray.cxx. References condarr, fiNumCond, fiType, kPOLYGON, and kWINDOW. |
|
Constructor. contype can be kWINDOW or kPOLYGON Definition at line 60 of file TGo4CondArray.cxx. References condarr, fiNumCond, fiType, kPOLYGON, and kWINDOW. |
|
Definition at line 115 of file TGo4CondArray.cxx. References condarr, and TGo4Condition::fxPainter. |
|
Factory method to generate the subclass implementation for painter.
Reimplemented from TGo4Condition. Definition at line 1111 of file TGo4CondArray.cxx. References TGo4ConditionPainter::SetCondition(). |
|
Reimplement Draw to set painted flag for all array conditions.
Reimplemented from TGo4Condition. Definition at line 1079 of file TGo4CondArray.cxx. References At(), TGo4Condition::Draw(), GetNumber(), TGo4Condition::IsPainted(), and TGo4Condition::SetPainted(). |
|
Replace default painter of this condition by external one. if different views of this condition shall exist for different TPads, the painter (i.e. view) can be exchanged before pad is updated. Reimplemented from TGo4Condition. Definition at line 1096 of file TGo4CondArray.cxx. References TGo4Condition::fxPainter, and TGo4Log::Warn(). |
|
Access to the currently selected condition.
Reimplemented from TGo4Condition. Definition at line 1020 of file TGo4CondArray.cxx. References At(), GetCurrentIndex(), and TGo4Condition::IsMultiEdit(). |
|
Returns condition object i from object array. See also Poly and Win. Definition at line 46 of file TGo4CondArray.cxx. References condarr. Referenced by Counts(), Disable(), Draw(), Enable(), GetActiveCondition(), GetCMax(), GetFlags(), GetIntegral(), GetMean(), GetMemorySize(), GetRMS(), GetXLow(), GetXMax(), GetXUp(), GetYLow(), GetYMax(), GetYUp(), Invert(), IsCMaxDraw(), IsIntDraw(), IsLabelDraw(), IsLimitsDraw(), IsPolygonType(), IsVisible(), IsXMaxDraw(), IsXMeanDraw(), IsXRMSDraw(), IsYMaxDraw(), IsYMeanDraw(), IsYRMSDraw(), MarkReset(), TGo4CondArrayPainter::PaintCondition(), Poly(), ResetCounts(), SetCMaxDraw(), SetIntDraw(), SetLabelDraw(), SetLimitsDraw(), SetValues(), SetVisible(), SetXMaxDraw(), SetXMeanDraw(), SetXRMSDraw(), SetYMaxDraw(), SetYMeanDraw(), SetYRMSDraw(), Test(), TrueCounts(), TGo4CondArrayPainter::UnPaintCondition(), and Win(). |
|
Returns window condition object i from object array. If the conditions is no window, returns 0. Must cast for window or polygon condition methods! Definition at line 32 of file TGo4CondArray.cxx. |
|
Returns polygon condition object i from object array. Checks if object is polygon condition, if not return 0. Definition at line 37 of file TGo4CondArray.cxx. |
|
Returns condition object i from object array. Same as At(). Must cast for window or polygon condition methods! Definition at line 42 of file TGo4CondArray.cxx. References condarr. |
|
Test currently selected condition(single edit mode). In multi edit mode, all conditions are tested with values and counters are incremented according result. Here return value is logically anded from all results. Reimplemented from TGo4Condition. Definition at line 132 of file TGo4CondArray.cxx. References At(), condarr, GetCurrentIndex(), TGo4Condition::IncCounts(), TGo4Condition::IncTrueCounts(), TGo4Condition::IsMultiEdit(), and TGo4Condition::Test(). |
|
Test currently selected condition(single edit mode). In multi edit mode, all conditions are tested with values and counters are incremented according result. Here return value is logically anded from all results. Reimplemented from TGo4Condition. Definition at line 155 of file TGo4CondArray.cxx. References At(), condarr, GetCurrentIndex(), TGo4Condition::IncCounts(), TGo4Condition::IncTrueCounts(), TGo4Condition::IsMultiEdit(), and TGo4Condition::Test(). |
|
Noop, return true.
Reimplemented from TGo4Condition. Definition at line 396 of file TGo4CondArray.cxx. References At(), GetCurrentIndex(), TGo4Condition::GetXLow(), and TGo4Condition::IsMultiEdit(). |
|
Reimplemented from TGo4Condition. Definition at line 411 of file TGo4CondArray.cxx. References At(), GetCurrentIndex(), TGo4Condition::GetXUp(), and TGo4Condition::IsMultiEdit(). |
|
Reimplemented from TGo4Condition. Definition at line 426 of file TGo4CondArray.cxx. References At(), GetCurrentIndex(), TGo4Condition::GetYLow(), and TGo4Condition::IsMultiEdit(). |
|
Reimplemented from TGo4Condition. Definition at line 441 of file TGo4CondArray.cxx. References At(), GetCurrentIndex(), TGo4Condition::GetYUp(), and TGo4Condition::IsMultiEdit(). |
|
Calls SetValues for all conditions (multi edit mode) or for currently selected (single edit mode). Window conditions only. Reimplemented from TGo4Condition. Definition at line 458 of file TGo4CondArray.cxx. References At(), condarr, fiType, GetCurrentIndex(), TGo4Condition::IsMultiEdit(), kWINDOW, and TGo4Condition::SetValues(). Referenced by TXXXProc::TXXXProc(), and TXXXUnpackProc::TXXXUnpackProc(). |
|
Calls SetValues for all conditions (multi edit mode) or for currently selected (single edit mode). Window conditions only. Reimplemented from TGo4Condition. Definition at line 478 of file TGo4CondArray.cxx. References At(), condarr, fiType, GetCurrentIndex(), TGo4Condition::IsMultiEdit(), kWINDOW, and TGo4Condition::SetValues(). |
|
Calls SetValues for all conditions (multi edit mode) or for currently selected (single edit mode). Polygon conditions only. Reimplemented from TGo4Condition. Definition at line 498 of file TGo4CondArray.cxx. References At(), condarr, fiType, GetCurrentIndex(), TGo4Condition::IsMultiEdit(), kPOLYGON, and TGo4Condition::SetValues(). |
|
Calls Print for all conditions in the array. Checks for condition type. If points is true, print Cut or Limits, respectively. Reimplemented from TGo4Condition. Definition at line 179 of file TGo4CondArray.cxx. References condarr, TGo4Condition::Print(), TGo4PolyCond::PrintCondition(), and TGo4WinCond::PrintCondition(). |
|
Prints counters and bar.
Reimplemented from TGo4Condition. Definition at line 200 of file TGo4CondArray.cxx. References condarr, and TGo4Condition::PrintBar(). |
|
for condition aggregates: return total number of conditions, i.e.size of condition array
Reimplemented from TGo4Condition. Definition at line 220 of file TGo4CondArray.cxx. References GetNumber(). Referenced by GetMemorySize(). |
|
Returns number of conditions in array. Same as GetNumberOfConditions, but kept for backward compatibility Definition at line 226 of file TGo4CondArray.cxx. References condarr. Referenced by Draw(), GetNumberOfConditions(), TGo4CondArrayPainter::PaintCondition(), and TGo4CondArrayPainter::UnPaintCondition(). |
|
Returns class name of conditions.
Definition at line 232 of file TGo4CondArray.cxx. References condarr. |
|
Returns condition type ID (kWINDOW=1 or kPOLYGON=2).
Definition at line 239 of file TGo4CondArray.cxx. References fiType. |
|
Calls Enable for all conditions (multi edit mode) or for currently selected (single edit mode).
Reimplemented from TGo4Condition. Definition at line 244 of file TGo4CondArray.cxx. References At(), condarr, TGo4Condition::Enable(), GetCurrentIndex(), and TGo4Condition::IsMultiEdit(). |
|
Calls Disable for all conditions (multi edit mode) or for currently selected (single edit mode).
Reimplemented from TGo4Condition. Definition at line 263 of file TGo4CondArray.cxx. References At(), condarr, TGo4Condition::Disable(), GetCurrentIndex(), and TGo4Condition::IsMultiEdit(). Referenced by TXXXProc::TXXXProc(), and TXXXUnpackProc::TXXXUnpackProc(). |
|
Calls Invert for all conditions (multi edit mode) or for currently selected (single edit mode).
Reimplemented from TGo4Condition. Definition at line 283 of file TGo4CondArray.cxx. References At(), condarr, GetCurrentIndex(), TGo4Condition::Invert(), and TGo4Condition::IsMultiEdit(). |
|
defines if condition counters shall be reset in UpdateFrom method
Reimplemented from TGo4Condition. Definition at line 303 of file TGo4CondArray.cxx. References At(), condarr, GetCurrentIndex(), TGo4Condition::IsMultiEdit(), and TGo4Condition::MarkReset(). |
|
Calls ResetCounts for all conditions (multi edit mode) or for currently selected (single edit mode).
Reimplemented from TGo4Condition. Definition at line 347 of file TGo4CondArray.cxx. References At(), condarr, GetCurrentIndex(), TGo4Condition::IsMultiEdit(), and TGo4Condition::ResetCounts(). Referenced by TXXXProc::TXXXProc(), and TXXXUnpackProc::TXXXUnpackProc(). |
|
Return number of calls of the Test method. For complete array (multi edit mode) or for currently selected condition (single edit mode) Reimplemented from TGo4Condition. Definition at line 366 of file TGo4CondArray.cxx. References At(), TGo4Condition::Counts(), GetCurrentIndex(), and TGo4Condition::IsMultiEdit(). |
|
Return number of true results of the Test method call. For complete array (multi edit mode) or for currently selected condition (single edit mode) Reimplemented from TGo4Condition. Definition at line 381 of file TGo4CondArray.cxx. References At(), TGo4Condition::Counts(), GetCurrentIndex(), and TGo4Condition::IsMultiEdit(). |
|
Sets values of internal boolean flags to external variables.
Reimplemented from TGo4Condition. Definition at line 322 of file TGo4CondArray.cxx. References At(), condarr, GetCurrentIndex(), TGo4Condition::GetFlags(), and TGo4Condition::IsMultiEdit(). |
|
we overwrite single condition visibility setter
Reimplemented from TGo4Condition. Definition at line 552 of file TGo4CondArray.cxx. References At(), condarr, GetCurrentIndex(), TGo4Condition::IsMultiEdit(), and TGo4Condition::SetVisible(). |
|
we overwrite single condition visibility getter
Reimplemented from TGo4Condition. Definition at line 571 of file TGo4CondArray.cxx. References At(), GetCurrentIndex(), TGo4Condition::IsMultiEdit(), and TGo4Condition::IsVisible(). |
|
we overwrite single condition changed property
Reimplemented from TGo4Condition. Definition at line 1029 of file TGo4CondArray.cxx. References condarr, and TGo4Condition::SetChanged(). |
|
we overwrite single condition changed property
Reimplemented from TGo4Condition. Definition at line 1038 of file TGo4CondArray.cxx. References condarr, and TGo4Condition::IsChanged(). |
|
Reimplemented from TGo4Condition. Definition at line 586 of file TGo4CondArray.cxx. References At(), condarr, GetCurrentIndex(), TGo4Condition::IsMultiEdit(), and TGo4Condition::SetLabelDraw(). |
|
Reimplemented from TGo4Condition. Definition at line 604 of file TGo4CondArray.cxx. References At(), GetCurrentIndex(), TGo4Condition::IsLabelDraw(), and TGo4Condition::IsMultiEdit(). |
|
Reimplemented from TGo4Condition. Definition at line 620 of file TGo4CondArray.cxx. References At(), condarr, GetCurrentIndex(), TGo4Condition::IsMultiEdit(), and TGo4Condition::SetLimitsDraw(). |
|
Reimplemented from TGo4Condition. Definition at line 639 of file TGo4CondArray.cxx. References At(), GetCurrentIndex(), TGo4Condition::IsLimitsDraw(), and TGo4Condition::IsMultiEdit(). |
|
Reimplemented from TGo4Condition. Definition at line 655 of file TGo4CondArray.cxx. References At(), condarr, GetCurrentIndex(), TGo4Condition::IsMultiEdit(), and TGo4Condition::SetIntDraw(). |
|
Reimplemented from TGo4Condition. Definition at line 673 of file TGo4CondArray.cxx. References At(), GetCurrentIndex(), TGo4Condition::IsIntDraw(), and TGo4Condition::IsMultiEdit(). |
|
Reimplemented from TGo4Condition. Definition at line 687 of file TGo4CondArray.cxx. References At(), condarr, GetCurrentIndex(), TGo4Condition::IsMultiEdit(), and TGo4Condition::SetXMeanDraw(). |
|
Reimplemented from TGo4Condition. Definition at line 705 of file TGo4CondArray.cxx. References At(), GetCurrentIndex(), TGo4Condition::IsMultiEdit(), and TGo4Condition::IsXMeanDraw(). |
|
Reimplemented from TGo4Condition. Definition at line 719 of file TGo4CondArray.cxx. References At(), condarr, GetCurrentIndex(), TGo4Condition::IsMultiEdit(), and TGo4Condition::SetXRMSDraw(). |
|
Reimplemented from TGo4Condition. Definition at line 737 of file TGo4CondArray.cxx. References At(), GetCurrentIndex(), TGo4Condition::IsMultiEdit(), and TGo4Condition::IsXRMSDraw(). |
|
Reimplemented from TGo4Condition. Definition at line 751 of file TGo4CondArray.cxx. References At(), condarr, GetCurrentIndex(), TGo4Condition::IsMultiEdit(), and TGo4Condition::SetYMeanDraw(). |
|
Reimplemented from TGo4Condition. Definition at line 769 of file TGo4CondArray.cxx. References At(), GetCurrentIndex(), TGo4Condition::IsMultiEdit(), and TGo4Condition::IsYMeanDraw(). |
|
Reimplemented from TGo4Condition. Definition at line 783 of file TGo4CondArray.cxx. References At(), condarr, GetCurrentIndex(), TGo4Condition::IsMultiEdit(), and TGo4Condition::SetYRMSDraw(). |
|
Reimplemented from TGo4Condition. Definition at line 801 of file TGo4CondArray.cxx. References At(), GetCurrentIndex(), TGo4Condition::IsMultiEdit(), and TGo4Condition::IsYRMSDraw(). |
|
Reimplemented from TGo4Condition. Definition at line 815 of file TGo4CondArray.cxx. References At(), condarr, GetCurrentIndex(), TGo4Condition::IsMultiEdit(), and TGo4Condition::SetXMaxDraw(). |
|
Reimplemented from TGo4Condition. Definition at line 833 of file TGo4CondArray.cxx. References At(), GetCurrentIndex(), TGo4Condition::IsMultiEdit(), and TGo4Condition::IsXMaxDraw(). |
|
Reimplemented from TGo4Condition. Definition at line 847 of file TGo4CondArray.cxx. References At(), condarr, GetCurrentIndex(), TGo4Condition::IsMultiEdit(), and TGo4Condition::SetYMaxDraw(). |
|
Reimplemented from TGo4Condition. Definition at line 865 of file TGo4CondArray.cxx. References At(), GetCurrentIndex(), TGo4Condition::IsMultiEdit(), and TGo4Condition::IsYMaxDraw(). |
|
Reimplemented from TGo4Condition. Definition at line 879 of file TGo4CondArray.cxx. References At(), condarr, GetCurrentIndex(), TGo4Condition::IsMultiEdit(), and TGo4Condition::SetCMaxDraw(). |
|
Reimplemented from TGo4Condition. Definition at line 897 of file TGo4CondArray.cxx. References At(), GetCurrentIndex(), TGo4Condition::IsCMaxDraw(), and TGo4Condition::IsMultiEdit(). |
|
Calculate value for histogram inside condition limits. Option may specify "width" to scale channel sum with axes Reimplemented from TGo4Condition. Definition at line 912 of file TGo4CondArray.cxx. References At(), condarr, GetCurrentIndex(), TGo4Condition::GetIntegral(), and TGo4Condition::IsMultiEdit(). |
|
Calculate value for histogram inside condition limits.
Reimplemented from TGo4Condition. Definition at line 933 of file TGo4CondArray.cxx. References At(), condarr, GetCurrentIndex(), TGo4Condition::GetMean(), and TGo4Condition::IsMultiEdit(). |
|
Calculate value for histogram inside condition limits.
Reimplemented from TGo4Condition. Definition at line 955 of file TGo4CondArray.cxx. References At(), GetCurrentIndex(), TGo4Condition::GetRMS(), and TGo4Condition::IsMultiEdit(). |
|
Calculate value for histogram inside condition limits.
Reimplemented from TGo4Condition. Definition at line 969 of file TGo4CondArray.cxx. References At(), GetCurrentIndex(), TGo4Condition::GetXMax(), and TGo4Condition::IsMultiEdit(). |
|
Calculate value for histogram inside condition limits.
Reimplemented from TGo4Condition. Definition at line 983 of file TGo4CondArray.cxx. References At(), GetCurrentIndex(), TGo4Condition::GetYMax(), and TGo4Condition::IsMultiEdit(). |
|
Calculate value for histogram inside condition limits.
Reimplemented from TGo4Condition. Definition at line 997 of file TGo4CondArray.cxx. References At(), condarr, TGo4Condition::GetCMax(), GetCurrentIndex(), and TGo4Condition::IsMultiEdit(). |
|
Reimplemented from TGo4Condition. Definition at line 1049 of file TGo4CondArray.cxx. References At(), fiType, GetCurrentIndex(), TGo4Condition::IsMultiEdit(), TGo4Condition::IsPolygonType(), and kPOLYGON. |
|
Reimplemented from TGo4Condition. Definition at line 128 of file TGo4CondArray.cxx. |
|
set index for array type subclasses
Reimplemented from TGo4Condition. Definition at line 1067 of file TGo4CondArray.cxx. References fiSelectedCond. |
|
get index for array type subclasses
Reimplemented from TGo4Condition. Definition at line 1073 of file TGo4CondArray.cxx. References fiSelectedCond. Referenced by Counts(), Disable(), Enable(), GetActiveCondition(), GetCMax(), GetFlags(), GetIntegral(), GetMean(), GetRMS(), GetXLow(), GetXMax(), GetXUp(), GetYLow(), GetYMax(), GetYUp(), Invert(), IsCMaxDraw(), IsIntDraw(), IsLabelDraw(), IsLimitsDraw(), IsPolygonType(), IsVisible(), IsXMaxDraw(), IsXMeanDraw(), IsXRMSDraw(), IsYMaxDraw(), IsYMeanDraw(), IsYRMSDraw(), MarkReset(), TGo4CondArrayPainter::PaintCondition(), ResetCounts(), SetCMaxDraw(), SetIntDraw(), SetLabelDraw(), SetLimitsDraw(), SetValues(), SetVisible(), SetXMaxDraw(), SetXMeanDraw(), SetXRMSDraw(), SetYMaxDraw(), SetYMeanDraw(), SetYRMSDraw(), Test(), and TrueCounts(). |
|
Copy values from cond to this. When counts is true, copy also counters. Reimplemented from TGo4Condition. Definition at line 519 of file TGo4CondArray.cxx. References condarr, and TGo4Condition::UpdateFrom(). |
|
Reimplemented from TGo4Condition. Definition at line 1118 of file TGo4CondArray.cxx. References At(), condarr, TGo4Condition::GetMemorySize(), and GetNumberOfConditions(). |
|
The object array of conditions.
Definition at line 236 of file TGo4CondArray.h. Referenced by At(), Disable(), Enable(), GetCMax(), GetFlags(), GetIntegral(), GetMean(), GetMemorySize(), GetNumber(), GetType(), Invert(), IsChanged(), MarkReset(), operator[](), PrintBar(), PrintCondition(), ResetCounts(), SetChanged(), SetCMaxDraw(), SetIntDraw(), SetLabelDraw(), SetLimitsDraw(), SetValues(), SetVisible(), SetXMaxDraw(), SetXMeanDraw(), SetXRMSDraw(), SetYMaxDraw(), SetYMeanDraw(), SetYRMSDraw(), Test(), TGo4CondArray(), UpdateFrom(), and ~TGo4CondArray(). |
|
Number of conditions in array.
Definition at line 239 of file TGo4CondArray.h. Referenced by TGo4CondArray(). |
|
Condition type ID (kWINDOW or kPOLYGON).
Definition at line 242 of file TGo4CondArray.h. Referenced by GetType(), IsPolygonType(), Poly(), SetValues(), TGo4CondArray(), and Win(). |
|
Index of selected condition.
Definition at line 245 of file TGo4CondArray.h. Referenced by GetCurrentIndex(), and SetCurrentIndex(). |