]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - MUON/AliMUONResponseTrigger.cxx
Standeard io streamers added to make debugging et al. easier.
[u/mrichter/AliRoot.git] / MUON / AliMUONResponseTrigger.cxx
... / ...
CommitLineData
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
16/*
17$Log$
18Revision 1.3 2000/07/03 11:54:57 morsch
19AliMUONSegmentation and AliMUONHitMap have been replaced by AliSegmentation and AliHitMap in STEER
20The methods GetPadIxy and GetPadXxy of AliMUONSegmentation have changed name to GetPadI and GetPadC.
21
22Revision 1.2 2000/06/15 07:58:48 morsch
23Code from MUON-dev joined
24
25Revision 1.1.2.1 2000/06/09 21:48:28 morsch
26Code from AliMUONSegResTrigger.cxx
27
28*/
29
30#include "AliMUONResponseTrigger.h"
31#include "AliSegmentation.h"
32#include <TMath.h>
33#include <TRandom.h>
34#include <iostream.h>
35
36ClassImp(AliMUONResponseTrigger)
37
38//------------------------------------------------------------------
39Int_t AliMUONResponseTrigger::SetGenerCluster(){
40// nothing to be done except return 0
41 return 0;
42}
43
44//------------------------------------------------------------------
45Int_t AliMUONResponseTrigger::DigitResponse(Int_t digit){
46// only digital (0/1) information available
47 if (digit) digit=1;
48 return digit;
49}
50
51
52
53
54
55