]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSAlignMilleData.cxx
Bug fix: AliHLTComponent::ConfigureFromArgumentString
[u/mrichter/AliRoot.git] / ITS / AliITSAlignMilleData.cxx
CommitLineData
75d480f6 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/* $Id$ */
17
18//-----------------------------------------------------------------------------
19/// \class AliITSAlignMilleData
20/// Alignment class for the ALICE ITS detector
21///
22///
23/// \author M. Lunardon
24//-----------------------------------------------------------------------------
25
26#include "AliITSAlignMilleData.h"
27
28/// \cond CLASSIMP
29ClassImp(AliITSAlignMilleData)
30/// \endcond
31
32AliITSAlignMilleData::AliITSAlignMilleData()
33: TObject(),
34 fMeasX(0),
35 fSigmaX(0),
36 fMeasZ(0),
37 fSigmaZ(0)
38{
39 // Default constructor
40 for (Int_t i=0; i<ITSMILLENLOCAL; i++) {
41 fIdxlocX[i]=0;
42 fDerlocX[i]=0.0;
43 fIdxlocZ[i]=0;
44 fDerlocZ[i]=0.0;
45 }
46 for (Int_t i=0; i<ITSMILLENPARCH; i++) {
47 fIdxgloX[i]=0;
48 fDergloX[i]=0.0;
49 fIdxgloZ[i]=0;
50 fDergloZ[i]=0.0;
51 }
52}
53
54AliITSAlignMilleData::~AliITSAlignMilleData() {
55 /// Destructor
56
57}
58