Changeset 1747 for trunk/MagicSoft
- Timestamp:
- 02/07/03 12:59:11 (22 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r1746 r1747 1 1 2 2 -*-*- END -*-*- 3 2003/02/06: Thomas Bretz 4 5 * mgeom/MGeomCam.[h,cc]: 6 - fixed a warning (GetPixRatio(int) --> GetPixRatio(Uint) 7 8 3 9 2003/02/07: Antonio Stamerra 4 10 5 * manal isys/MTrigLvl2.[cc|h]11 * manalysis/MTrigLvl2.[cc|h] 6 12 - added new function 7 13 MTrigLvl2::GetLutCompactPixel(int cell, int lut, int neighpix=2) … … 14 20 - Added comments using the standard layout 15 21 - some small changes following Thomas comments (memset, *fLog) 22 16 23 17 24 -
trunk/MagicSoft/Mars/mfileio/MCT1ReadPreProc.cc
r1745 r1747 431 431 fIn->read((Byte_t*)&outpars, sizeof(struct outputpars)); 432 432 433 <<<<<<< MCT1ReadPreProc.cc434 return ProcessRunHeader(outpars);435 =======436 433 ProcessRunHeader(outpars); 437 434 438 435 //rwagner: ReInit whenever new run commences 439 436 // rc==-1 means: ReInit didn't work out 440 if (!fTaskList->ReInit(fParList)) return -1; 437 if (!fTaskList->ReInit(fParList)) 438 return -1; 441 439 442 440 return kTRUE; 443 >>>>>>> 1.13444 441 } 445 442 -
trunk/MagicSoft/Mars/mgeom/MGeomCam.cc
r1715 r1747 115 115 // the id 0 to scale variables with the pixel size. 116 116 // 117 Float_t MGeomCam::GetPixRatio( Int_t i) const117 Float_t MGeomCam::GetPixRatio(UInt_t i) const 118 118 { 119 119 return i<fNumPixels ? (*this)[0].GetA()/(*this)[i].GetA() : 0; -
trunk/MagicSoft/Mars/mgeom/MGeomCam.h
r1540 r1747 36 36 UInt_t GetNumPixels() const { return fNumPixels; } 37 37 Float_t GetMaxRadius() const { return fMaxRadius; } 38 Float_t GetPixRatio( Int_t i) const;38 Float_t GetPixRatio(UInt_t i) const; 39 39 40 40 MGeomPix &operator[](Int_t i) { return *(MGeomPix*)fPixels->UncheckedAt(i); }
Note:
See TracChangeset
for help on using the changeset viewer.