FACT++  1.0
Bool_t MVideo::ResetControls ( ) const

Definition at line 249 of file MVideo.cc.

References fControls, MVideoCtrl::fName, gLog, and ResetControl().

250 {
251  Bool_t rc = kTRUE;
252 
253  TIter Next(&fControls);
254  MVideoCtrl *ctrl = 0;
255  while ((ctrl=((MVideoCtrl*)Next())))
256  if (!ResetControl(*ctrl))
257  {
258  gLog << err << "ERROR - Could not reset " << ctrl->fName << "." << endl;
259  rc = kFALSE;
260  }
261 
262  return rc;
263 }
TString fName
Definition: MVideo.h:32
Bool_t ResetControl(MVideoCtrl &vctrl) const
Definition: MVideo.cc:239
#define gLog
Definition: fits.h:36
TList fControls
Definition: MVideo.h:71

+ Here is the call graph for this function: