]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSOnlineSDD.cxx
Fix of parsing bug related to the reading of the calib header. Added consistency...
[u/mrichter/AliRoot.git] / ITS / AliITSOnlineSDD.cxx
CommitLineData
348f80b7 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
25ClassImp(AliITSOnlineSDD)
26//______________________________________________________________________
750296dd 27 AliITSOnlineSDD::AliITSOnlineSDD():TObject(),fModuleId(0),fSide(0),fFirstGoodTB(0),fLastGoodTB(0)
348f80b7 28{
29 // default constructor
750296dd 30 SetFirstGoodTB();
31 SetLastGoodTB();
348f80b7 32}
33//______________________________________________________________________
750296dd 34 AliITSOnlineSDD::AliITSOnlineSDD(Int_t mod, Int_t sid):TObject(),fModuleId(0),fSide(0),fFirstGoodTB(0),fLastGoodTB(0)
348f80b7 35{
36 // standard constructor
37 SetModule(mod);
38 SetDetectorSide(sid);
750296dd 39 SetFirstGoodTB();
40 SetLastGoodTB();
348f80b7 41}