Last change
on this file since 733 was 447, checked in by harald, 24 years ago |
Bringing the sources for the octobertest under CVS controll.
(november, 3rd, 2000)
|
File size:
582 bytes
|
Line | |
---|
1 | ////////////////////////////////////////////////////////////////////////
|
---|
2 | //
|
---|
3 | // class MGeomPixel
|
---|
4 | //
|
---|
5 | //
|
---|
6 |
|
---|
7 | include "MGeomPixel.h"
|
---|
8 |
|
---|
9 | ClassImp(MGeomPixel)
|
---|
10 |
|
---|
11 |
|
---|
12 | MGeomPixel::MGeomPixel () {
|
---|
13 | //
|
---|
14 | // default constructor
|
---|
15 | //
|
---|
16 | // all values are set to zero.
|
---|
17 | // Boolean are set to kFALSE
|
---|
18 | //
|
---|
19 |
|
---|
20 | fPixId = 0 ;
|
---|
21 |
|
---|
22 | fXcoord = 0. ;
|
---|
23 | fYcoord = 0. ;
|
---|
24 | fRadius = 0. ;
|
---|
25 |
|
---|
26 | fNumNeigbor = 0 ;
|
---|
27 |
|
---|
28 | for (Int_t i=0; i<6; i++ ) {
|
---|
29 | fNextNeigbor = 0 ;
|
---|
30 | fXCorner = 0. ;
|
---|
31 | fYCorner = 0. ;
|
---|
32 | }
|
---|
33 |
|
---|
34 |
|
---|
35 | IsInstalled = kFALSE ;
|
---|
36 | IsOk = kFALSE ;
|
---|
37 | }
|
---|
38 |
|
---|
39 |
|
---|
40 |
|
---|
41 |
|
---|
42 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.