BmnRoot
Loading...
Searching...
No Matches
CbmStsSectorDigiPar.cxx
Go to the documentation of this file.
1// -------------------------------------------------------------------------
2// ----- CbmStsSectorDigiPar source file -----
3// ----- Created 28/06/05 by V. Friese -----
4// -------------------------------------------------------------------------
5
6
8
9#include "TMath.h"
10
11// ----- Default constructor -------------------------------------------
13: fSectorNr(-1),
14 fSensors()
15{
16 fSensors = new TObjArray();
17}
18// -------------------------------------------------------------------------
19
20
21
22// ----- Standard constructor ------------------------------------------
24: fSectorNr(),
25 fSensors()
26{
27 fSectorNr = sectorNr;
28 fSensors = new TObjArray();
29}
30// -------------------------------------------------------------------------
31
32
33
34// ----- Destructor ----------------------------------------------------
36 if ( fSensors) {
37 fSensors->Delete();
38 delete fSensors;
39 }
40}
41// -------------------------------------------------------------------------