Line data Source code
1 : #ifndef AliMFTChipSegmentation_H
2 : #define AliMFTChipSegmentation_H
3 :
4 : /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 : * See cxx source for full Copyright notice */
6 :
7 : // $Id$
8 :
9 : /// \ingroup MFTbase
10 : /// \class AliMFTChipSegmentation
11 : /// \brief Chip Segmentation description
12 : ///
13 : /// \author Raphael Tieulent <raphael.tieulent@cern.ch>
14 : /// \date June 9th, 2015
15 :
16 : #include "AliMFTVSegmentation.h"
17 :
18 : //====================================================================================================================================================
19 :
20 0 : class AliMFTChipSegmentation : public AliMFTVSegmentation {
21 :
22 : public:
23 :
24 : AliMFTChipSegmentation();
25 : AliMFTChipSegmentation(UInt_t uniqueID);
26 :
27 0 : virtual ~AliMFTChipSegmentation(){};
28 0 : virtual void Clear(const Option_t* /*opt*/) {;}
29 : virtual void Print(Option_t* /*option*/);
30 :
31 : /// \brief Transform (x,y) Hit coordinate into Pixel ID on the matrix
32 : Bool_t Hit2PixelID(Double_t xHit, Double_t yHit, Int_t &xPixel, Int_t &yPixel);
33 :
34 : private:
35 :
36 : /// \cond CLASSIMP
37 14 : ClassDef(AliMFTChipSegmentation, 1);
38 : /// \endcond
39 :
40 : };
41 :
42 : //====================================================================================================================================================
43 :
44 : #endif
45 :
|