1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
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 **************************************************************************/
18 // Authors: David Guez, Ivana Hrivnacova, Marion MacCormick; IPN Orsay
20 // Class AliMUONSt1ResponseRule
21 // -----------------------------
22 // Describes a response rule.
23 // A "rule" is defined as being a set of electronic filters to be applied
24 // (ie. a set of AliMUONSt1ResponseParameter) and a set of cathode pads to
25 // which these filters should be applied (set of AliMUONSt1ElectronicElement)
26 // Included in AliRoot 2003/01/28
30 #include "AliMUONSt1ResponseRule.h"
31 #include "AliMUONSt1ElectronicElement.h"
32 #include "AliMUONSt1ResponseParameter.h"
33 ClassImp(AliMUONSt1ResponseRule)
35 //__________________________________________________________________________
36 AliMUONSt1ResponseRule::AliMUONSt1ResponseRule()
41 // default constructor
44 //__________________________________________________________________________
45 AliMUONSt1ResponseRule::~AliMUONSt1ResponseRule()
50 //__________________________________________________________________________
51 void AliMUONSt1ResponseRule::AddElement(AliMUONSt1ElectronicElement* element)
53 // Add an electronic element to the list
56 fElementList.Add(element);
59 //__________________________________________________________________________
60 void AliMUONSt1ResponseRule::AddParameter(AliMUONSt1ResponseParameter* param)
62 // Add an electronics parameter for this rule
65 fParameters.Add(param);
68 //__________________________________________________________________________
69 Bool_t AliMUONSt1ResponseRule::Contains(const AliMpPad& pad) const
71 // Is this pad is contained in this rule's list
74 TIter next(&fElementList);
75 AliMUONSt1ElectronicElement* el;
76 while ((el = static_cast<AliMUONSt1ElectronicElement*>(next()))){
77 if (el->Contains(pad)) return kTRUE;