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