Line data Source code
1 : // **************************************************************************
2 : // This file is property of and copyright by the ALICE HLT Project *
3 : // ALICE Experiment at CERN, All rights reserved. *
4 : // *
5 : // Primary Authors: Sergey Gorbunov <sergey.gorbunov@kip.uni-heidelberg.de> *
6 : // for The ALICE HLT Project. *
7 : // *
8 : // Permission to use, copy, modify and distribute this software and its *
9 : // documentation strictly for non-commercial purposes is hereby granted *
10 : // without fee, provided that the above copyright notice appears in all *
11 : // copies and that both the copyright notice and this permission notice *
12 : // appear in the supporting documentation. The authors make no claims *
13 : // about the suitability of this software for any purpose. It is *
14 : // provided "as is" without express or implied warranty. *
15 : // *
16 : //***************************************************************************
17 :
18 :
19 : #include "AliHLTITSDetector.h"
20 :
21 : #include "AliITSgeomTGeo.h"
22 : #include "AliITSCalibration.h"
23 : #include "AliITSsegmentation.h"
24 : #include "AliITSDetTypeRec.h"
25 :
26 : //------------------------------------------------------------------------
27 : AliHLTITSDetector::AliHLTITSDetector(const AliHLTITSDetector& det):
28 0 : fR(det.fR),
29 0 : fRmisal(det.fRmisal),
30 0 : fPhi(det.fPhi),
31 0 : fSinPhi(det.fSinPhi),
32 0 : fCosPhi(det.fCosPhi),
33 0 : fYmin(det.fYmin),
34 0 : fYmax(det.fYmax),
35 0 : fZmin(det.fZmin),
36 0 : fZmax(det.fZmax)
37 0 : {
38 : //Copy constructor
39 0 : }
|