]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONScalerEventTrigger.cxx
mapping/data/station2/non-bending_plane/zones_special_outer.dat
[u/mrichter/AliRoot.git] / MUON / AliMUONScalerEventTrigger.cxx
CommitLineData
c8f4be1a 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#include "AliMUONScalerEventTrigger.h"
17
18ClassImp(AliMUONScalerEventTrigger)
19 const Int_t AliMUONScalerEventTrigger::fgkLocalScalerLength = 45;
20 const Int_t AliMUONScalerEventTrigger::fgkRegScalerLength = 11;
21 const Int_t AliMUONScalerEventTrigger::fgkGlobalScalerLength = 10;
22 const Int_t AliMUONScalerEventTrigger::fgkDarcScalerLength = 6;
23
24//___________________________________________
25AliMUONScalerEventTrigger::AliMUONScalerEventTrigger()
26 : fLocalL0(0),
27 fLocalHold(0),
28 fLocalClk(0),
29 fLocalLPtNTrig(0),
30 fLocalHPtNTrig(0),
31 fLocalLPtRTrig(0),
32 fLocalHPtRTrig(0),
33 fLocalLPtLTrig(0),
34 fLocalHPtLTrig(0),
35 fLocalLPtSTrig(0),
36 fLocalHPtSTrig(0),
37 fLocalEOS(0),
38 fLocalReset(0),
39
40 fRegL0(0),
41 fRegClk(0),
42 fRegHold(0),
43
44 fGlobalL0(0),
45 fGlobalClk(0),
46 fGlobalHold(0),
47 fGlobalSpare(0),
48
49 fDarcL0R(0),
50 fDarcL0U(0),
51 fDarcL0P(0),
52 fDarcL0S(0),
53 fDarcClk(0),
54 fDarcHold(0)
55{
56 for (Int_t i = 0; i < 8*4; i++)
57 fLocalScaler[i] = 0;
58
59 for (Int_t i = 0; i < 8; i++)
60 fRegScaler[i] = 0;
61
62 for (Int_t i = 0; i < 6; i++)
63 fGlobalScaler[i] = 0;
64
65}