]>
Commit | Line | Data |
---|---|---|
a9e2aefa | 1 | #ifndef ALIMUONSEGMENTATIONV04_H |
2 | #define ALIMUONSEGMENTATIONV04_H | |
3 | /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * | |
4 | * See cxx source for full Copyright notice */ | |
5 | ||
6 | /* $Id$ */ | |
7 | ||
8 | ///////////////////////////////////////////////////// | |
9 | // Segmentation and Response classes version 04 // | |
10 | ///////////////////////////////////////////////////// | |
11 | ||
12 | #include "AliMUONSegmentationV01.h" | |
13 | ||
14 | class AliMUONSegmentationV04 : | |
15 | public AliMUONSegmentationV01 { | |
16 | public: | |
17 | AliMUONSegmentationV04(){} | |
18 | virtual ~AliMUONSegmentationV04(){} | |
19 | // Initialisation | |
d81db581 | 20 | virtual void Init(Int_t chamber); |
a9e2aefa | 21 | // Test points for auto calibration |
22 | void GiveTestPoints(Int_t &n, Float_t *x, Float_t *y); | |
23 | ClassDef(AliMUONSegmentationV04,1) // Segmentation zones are rectangular modules | |
24 | }; | |
25 | ||
26 | ||
27 | #endif | |
28 | ||
29 | ||
30 | ||
31 | ||
32 | ||
33 |