Changeset 1544 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 10/16/02 16:27:25 (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MPedestalCam.cc
r1540 r1544 71 71 // Set the size of the camera 72 72 // 73 inlinevoid MPedestalCam::InitSize(const UInt_t i)73 void MPedestalCam::InitSize(const UInt_t i) 74 74 { 75 75 fArray->ExpandCreate(i); … … 80 80 // Get the size of the MPedestalCam 81 81 // 82 inlineInt_t MPedestalCam::GetSize() const82 Int_t MPedestalCam::GetSize() const 83 83 { 84 84 return fArray->GetEntries(); … … 89 89 // Get i-th pixel (pixel number) 90 90 // 91 inlineMPedestalPix &MPedestalCam::operator[](Int_t i)91 MPedestalPix &MPedestalCam::operator[](Int_t i) 92 92 { 93 93 return *(MPedestalPix*)fArray->UncheckedAt(i); … … 98 98 // Get i-th pixel (pixel number) 99 99 // 100 inlineMPedestalPix &MPedestalCam::operator[](Int_t i) const100 MPedestalPix &MPedestalCam::operator[](Int_t i) const 101 101 { 102 102 return *(MPedestalPix*)fArray->UncheckedAt(i); … … 117 117 } 118 118 119 void MPedestalCam::Print(Option_t *o ="") const119 void MPedestalCam::Print(Option_t *o) const 120 120 { 121 121 *fLog << all << GetDescriptor() << ":" << endl;
Note:
See TracChangeset
for help on using the changeset viewer.