Changeset 7594 for trunk/MagicSoft/Mars/mpointing
- Timestamp:
- 03/13/06 15:51:11 (19 years ago)
- Location:
- trunk/MagicSoft/Mars/mpointing
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mpointing/MPointingDevCalc.cc
r7374 r7594 192 192 // Linear starguider calibration taken from April/May data 193 193 // For calibration add MDriveReport::GetErrorZd/Az ! 194 fDeviation->SetDevXY( -7.0, 16);194 fDeviation->SetDevXY(fDx, fDy); 195 195 //devzd -= 2.686/60; // 1arcmin ~ 5mm 196 196 //devaz -= 2.840/60; … … 278 278 rc = kTRUE; 279 279 } 280 if (IsEnvDefined(env, prefix, "Dx", print)) 281 { 282 fDx = GetEnvValue(env, prefix, "Dx", fDx); 283 rc = kTRUE; 284 } 285 if (IsEnvDefined(env, prefix, "Dy", print)) 286 { 287 fDy = GetEnvValue(env, prefix, "Dy", fDy); 288 rc = kTRUE; 289 } 280 290 281 291 return rc; -
trunk/MagicSoft/Mars/mpointing/MPointingDevCalc.h
r7553 r7594 33 33 Float_t fMaxAbsDev; // [arcmin] Maximum considered absolute deviation 34 34 35 Float_t fDx; // Starguider calibration dx 36 Float_t fDy; // Starguider calibration dy 37 35 38 // MPointingDevCalc 36 39 Int_t ProcessStarguiderReport(); … … 47 50 public: 48 51 MPointingDevCalc() : fReport(0), fDeviation(0), fSkip(5), fNumMinStars(8), 49 fNsbLevel(3), fNsbMin(30), fNsbMax(60), fMaxAbsDev(15) 52 fNsbLevel(3), fNsbMin(30), fNsbMax(60), fMaxAbsDev(15), fDx(-7), fDy(16) 50 53 { 51 54 fName = "MPointingDevCalc"; … … 60 63 void SetNsbMax(Float_t nsb) { fNsbMax=nsb; } 61 64 void SetMaxAbsDev(Float_t max) { fMaxAbsDev=max; } 65 void SetDx(Float_t dx) { fDx=dx; } 66 void SetDy(Float_t dy) { fDy=dy; } 62 67 63 68 ClassDef(MPointingDevCalc, 0) //Task calculating the pointing deviation
Note:
See TracChangeset
for help on using the changeset viewer.