]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONResponseTrigger.cxx
Adding comment lines to class description needed for Root documentation,
[u/mrichter/AliRoot.git] / MUON / AliMUONResponseTrigger.cxx
CommitLineData
a9e2aefa 1/**************************************************************************
2 * Copyright(c) 1998-1999, 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
88cb7938 16/* $Id$ */
a9e2aefa 17
3d1463c8 18
19//-----------------------------------------------------------------------------
9265505b 20// Class AliMUONResponseTrigger
21// -------------------------------
22// Implementation
23// of RPC response
3d1463c8 24//-----------------------------------------------------------------------------
30178c30 25
a9e2aefa 26
9265505b 27#include "AliMUONResponseTrigger.h"
885d501b 28#include "AliMUON.h"
29#include "AliMUONDigit.h"
30#include "AliMUONGeometryTransformer.h"
31#include "AliMUONHit.h"
9265505b 32#include "AliMUONConstants.h"
33
885d501b 34#include "AliMpPad.h"
866c3232 35#include "AliMpCathodType.h"
885d501b 36#include "AliMpPlaneType.h"
9265505b 37#include "AliMpSegmentation.h"
885d501b 38#include "AliMpVSegmentation.h"
9265505b 39
885d501b 40#include "AliRun.h"
9265505b 41#include "AliLog.h"
885d501b 42#include "TList.h"
885d501b 43
9265505b 44/// \cond CLASSIMP
a9e2aefa 45ClassImp(AliMUONResponseTrigger)
9265505b 46/// \endcond
a9e2aefa 47
885d501b 48namespace
49{
885d501b 50 AliMUON* muon()
51 {
52 return static_cast<AliMUON*>(gAlice->GetModule("MUON"));
53 }
54
55 void Global2Local(Int_t detElemId, Double_t xg, Double_t yg, Double_t zg,
56 Double_t& xl, Double_t& yl, Double_t& zl)
57 {
58 // ideally should be :
59 // Double_t x,y,z;
60 // AliMUONGeometry::Global2Local(detElemId,xg,yg,zg,x,y,z);
61 // but while waiting for this geometry singleton, let's go through
62 // AliMUON still.
63
64 const AliMUONGeometryTransformer* transformer = muon()->GetGeometryTransformer();
65 transformer->Global2Local(detElemId,xg,yg,zg,xl,yl,zl);
66 }
885d501b 67}
68
30178c30 69//------------------------------------------------------------------
70AliMUONResponseTrigger::AliMUONResponseTrigger()
7e4a628d 71 : AliMUONResponse()
30178c30 72{
9265505b 73/// Default constructor
74}
75
76//------------------------------------------------------------------
77AliMUONResponseTrigger::~AliMUONResponseTrigger()
78{
79/// Destructor
925e6570 80}
30178c30 81
885d501b 82//_____________________________________________________________________________
83void
84AliMUONResponseTrigger::DisIntegrate(const AliMUONHit& hit, TList& digits)
85{
9265505b 86 /// Generate 2 digits (one on each cathode) from 1 hit, i.e. no cluster-size
87 /// generation (simplest response case).
885d501b 88
89 digits.Clear();
90
91 Float_t xhit = hit.X();
92 Float_t yhit = hit.Y();
93 Float_t zhit = 0; // FIXME : should it be hit.Z() ?
94 Int_t detElemId = hit.DetElemId();
95
96 Double_t x,y,z;
97 Global2Local(detElemId,xhit,yhit,zhit,x,y,z);
98
99 Float_t tof = hit.Age();
100 Int_t twentyNano(100);
d344444e 101 if (tof<AliMUONConstants::TriggerTofLimit())
885d501b 102 {
103 twentyNano=1;
104 }
105
866c3232 106 for ( Int_t cath = AliMp::kCath0; cath <= AliMp::kCath1; ++cath )
885d501b 107 {
9265505b 108 const AliMpVSegmentation* seg
866c3232 109 = AliMpSegmentation::Instance()
110 ->GetMpSegmentation(detElemId,AliMp::GetCathodType(cath));
885d501b 111
112 AliMpPad pad = seg->PadByPosition(TVector2(x,y),kFALSE);
113 Int_t ix = pad.GetIndices().GetFirst();
114 Int_t iy = pad.GetIndices().GetSecond();
115
116 AliDebug(1,Form("xhit,yhit=%e,%e lx,ly,lz=%e,%e,%e ix,iy=%d,%d",
117 xhit,yhit,x,y,z,ix,iy));
118
119 if ( !pad.IsValid() )
120 {
121 AliWarning(Form("hit w/o strip %d-%d xhit,yhit=%e,%e local x,y,z "
122 "%e,%e,%e ix,iy=%d,%d",detElemId,
123 cath,
124 xhit,yhit,x,y,z,ix,iy));
125 continue;
126 }
2a7d64a9 127 AliMUONDigit* d = new AliMUONDigit(detElemId,pad.GetLocation(0).GetFirst(),
128 pad.GetLocation(0).GetSecond(),cath);
129 d->SetPadXY(ix,iy);
130
131 //FIXME : a trigger digit can have several locations.
132 //this is not currently supported by the digit class. Change that or not ?
133 d->SetCharge(twentyNano);
885d501b 134 digits.Add(d);
885d501b 135 }
136
885d501b 137}
138
a9e2aefa 139
140
141
142