/**
  * Clears the current object, sets all attributes to their default values and removes
  * outgoing references as well as back-references (from other objects to this one. Results probably in a database
  * change of those foreign objects when you call `save` there).
  */
 public function clear()
 {
     if (null !== $this->aInput) {
         $this->aInput->removeInputError($this);
     }
     $this->id = null;
     $this->input_uuid = null;
     $this->ber_average = null;
     $this->unc_average = null;
     $this->cumulative_te = null;
     $this->cumulative_cc = null;
     $this->created = null;
     $this->modified = null;
     $this->alreadyInSave = false;
     $this->clearAllReferences();
     $this->resetModified();
     $this->setNew(true);
     $this->setDeleted(false);
 }