Changeset 3959
- Timestamp:
- 05/04/04 16:45:45 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3958 r3959 60 60 - put one initialization to 0 into the MExtractor 61 61 62 62 * mastro/MAstroCatalog.h 63 - make AlignCoordinates() protected, in order to compile 64 63 65 2004/05/03: Thomas Bretz 64 66 -
trunk/MagicSoft/Mars/mastro/MAstroCatalog.h
r3710 r3959 91 91 Bool_t DrawLine(const TVector2 &v0, Double_t dx, Double_t dy, const TRotation &rot, Int_t type); 92 92 void DrawGrid(const TVector3 &v0, const TRotation &rot, Int_t type); 93 TRotation AlignCoordinates(const TVector3 &v) const;94 93 void Paint(Option_t *o=""); 95 94 Int_t DistancetoPrimitive(Int_t px, Int_t py); … … 137 136 MTime *fTime; // Possible observation time 138 137 138 TRotation AlignCoordinates(const TVector3 &v) const; 139 139 virtual TString GetPadTitle() const; 140 140 TRotation GetGrid(Bool_t local); -
trunk/MagicSoft/Mars/msignal/MExtractFixedWindow.cc
r3951 r3959 175 175 Byte_t *end = ptr + fHiGainLast - fHiGainFirst + 1; 176 176 177 sum = 0;178 sat = 0;179 180 177 while (ptr<end) 181 178 { … … 207 204 // - Sum up contents of *ptr 208 205 // - If *ptr is greater than fSaturationLimit, raise sat by 1 206 // - If fHiLoLast is set, loop from logain to (logain+fHiLoLast) 207 // - Add contents of *logain to sum 209 208 // 210 209 void MExtractFixedWindow::FindSignalLoGain(Byte_t *ptr, Int_t &sum, Byte_t &sat) const … … 212 211 213 212 Byte_t *end = ptr + fLoGainLast - fLoGainFirst + 1; 214 215 sum = 0;216 sat = 0;217 213 218 214 while (ptr<end)
Note:
See TracChangeset
for help on using the changeset viewer.