// File: hrichsectorpar.cc // *************************************************************************** //*-- Author : Witold Przygoda (przygoda@psja1.if.uj.edu.pl) //*-- Modified : 1999/12/04 by Witold Przygoda (przygoda@psja1.if.uj.edu.pl) using namespace std; #include <iostream> #include <iomanip> #include "hrichsectorpar.h" // *************************************************************************** //_HADES_CLASS_DESCRIPTION ////////////////////////////////////////////////////////////////////////////// // // HRichSectorPar // // Sector (module) parameters. // ////////////////////////////////////////////////////////////////////////////// // *************************************************************************** ClassImp(HRichSectorPar) //---------------------------------------------------------------------------- HRichSectorPar::HRichSectorPar() { reset(); } // eof constructor //============================================================================ //---------------------------------------------------------------------------- HRichSectorPar::~HRichSectorPar() { reset(); } // eof destructor //============================================================================ //---------------------------------------------------------------------------- void HRichSectorPar::reset() { fSectorId=0; fRotationAngle=0.; } //============================================================================