]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSOnlineSDD.cxx
Upgraded possibility of DCS data size reduction (V. Pospisil)
[u/mrichter/AliRoot.git] / ITS / AliITSOnlineSDD.cxx
1 /**************************************************************************
2  * Copyright(c) 2007-2009, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 ///////////////////////////////////////////////////////////////////
17 //                                                               //
18 // Implementation of the base class for SDD detector algorithms  //
19 // Origin: F.Prino, Torino, prino@to.infn.it                     //
20 //                                                               //
21 ///////////////////////////////////////////////////////////////////
22
23 #include "AliITSOnlineSDD.h"
24
25 ClassImp(AliITSOnlineSDD)
26 //______________________________________________________________________
27   AliITSOnlineSDD::AliITSOnlineSDD():TObject(),fDDL(0),fCarlos(0),fSide(0),fFirstGoodTB(0),fLastGoodTB(0)
28 {
29   // default constructor
30   SetFirstGoodTB();
31   SetLastGoodTB();
32 }
33 //______________________________________________________________________
34   AliITSOnlineSDD::AliITSOnlineSDD(Int_t nddl, Int_t ncarlos, Int_t sid):TObject(),fDDL(0),fCarlos(0),fSide(0),fFirstGoodTB(0),fLastGoodTB(0)
35 {
36   // standard constructor
37   SetDDL(nddl);
38   SetCarlos(ncarlos);
39   SetDetectorSide(sid);
40   SetFirstGoodTB();
41   SetLastGoodTB();
42 }