X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=PHOS%2FAliPHOSCPVGeometry.cxx;fp=PHOS%2FAliPHOSCPVGeometry.cxx;h=0000000000000000000000000000000000000000;hb=97e8d2a8046dd3310ee36d65a962252c631e63b7;hp=34d326ceafa662247a45b4fdacddc2404e91d5cc;hpb=2509791b97d3fac684dd7d2656f3a6b6c503d2b4;p=u%2Fmrichter%2FAliRoot.git diff --git a/PHOS/AliPHOSCPVGeometry.cxx b/PHOS/AliPHOSCPVGeometry.cxx deleted file mode 100644 index 34d326ceafa..00000000000 --- a/PHOS/AliPHOSCPVGeometry.cxx +++ /dev/null @@ -1,68 +0,0 @@ -/************************************************************************** - * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * - * * - * Author: The ALICE Off-line Project. * - * Contributors are mentioned in the code where appropriate. * - * * - * 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. * - **************************************************************************/ - -/* $Id$ */ - -//_________________________________________________________________________ -// Geometry class for PHOS : CPV (Charged particle veto, IHEP version) -// Its data members provide geometry parametrization of CPV -// which can be changed in the constructor only. -// Author: Yuri Kharlov (IHEP, Protvino) -// 15 September 2000 -// -// --- ROOT system --- - -// --- Standard library --- - -// --- AliRoot header files --- - -#include "AliPHOSCPVGeometry.h" - -ClassImp(AliPHOSCPVGeometry) - -//____________________________________________________________________________ -AliPHOSCPVGeometry::AliPHOSCPVGeometry() - : fNumberOfCPVLayers(1), - fNumberOfCPVPadsPhi(128), - fNumberOfCPVPadsZ(56), - fCPVPadSizePhi(1.13), - fCPVPadSizeZ(2.26), - fNumberOfCPVChipsPhi(8), - fNumberOfCPVChipsZ(8), - fCPVGasThickness(1.3), - fCPVTextoliteThickness(0.1), - fCPVCuNiFoilThickness(56e-04) -{ - - // Initializes the CPV parameters - fCPVFrameSize[0] = 2.5; - fCPVFrameSize[1] = 5.1; - fCPVFrameSize[2] = 2.5; - fGassiplexChipSize[0] = 4.2; - fGassiplexChipSize[1] = 0.1; - fGassiplexChipSize[2] = 6.0; - fFTPosition[0] = 0.7; - fFTPosition[1] = 2.2; - fFTPosition[2] = 3.6; - fFTPosition[3] = 5.1; - - fCPVActiveSize[0] = fNumberOfCPVPadsPhi * fCPVPadSizePhi; - fCPVActiveSize[1] = fNumberOfCPVPadsZ * fCPVPadSizeZ; - fCPVBoxSize[0] = fCPVActiveSize[0] + 2 * fCPVFrameSize[0]; - fCPVBoxSize[1] = fCPVFrameSize[1] * fNumberOfCPVLayers + 0.1; - fCPVBoxSize[2] = fCPVActiveSize[1] + 2 * fCPVFrameSize[2]; - -} -//____________________________________________________________________________