]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONLocalTrigger.cxx
Import gAlice from the signal file before InitGlobal() to allow detectors to use...
[u/mrichter/AliRoot.git] / MUON / AliMUONLocalTrigger.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
16/*
17
18*/
19
20#include "AliMUONLocalTrigger.h"
21
22ClassImp(AliMUONLocalTrigger);
23//----------------------------------------------------------------------
24AliMUONLocalTrigger::AliMUONLocalTrigger()
25{
26// constructor
27 fLoCircuit = 0;
28 fLoStripX = 0;
29 fLoDev = 0;
30 fLoStripY = 0;
31 fLoLpt = 0;
32 fLoHpt = 0;
33 fLoApt = 0;
34}
35//----------------------------------------------------------------------
36AliMUONLocalTrigger::AliMUONLocalTrigger(Int_t *localtr)
37{
38// add a local trigger object
39 fLoCircuit = localtr[0];
40 fLoStripX = localtr[1];
41 fLoDev = localtr[2];
42 fLoStripY = localtr[3];
43 fLoLpt = localtr[4];
44 fLoHpt = localtr[5];
45 fLoApt = localtr[6];
46}