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