| 1 | /* ======================================================================== *\
|
|---|
| 2 | !
|
|---|
| 3 | ! *
|
|---|
| 4 | ! * This file is part of MARS, the MAGIC Analysis and Reconstruction
|
|---|
| 5 | ! * Software. It is distributed to you in the hope that it can be a useful
|
|---|
| 6 | ! * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
|
|---|
| 7 | ! * It is distributed WITHOUT ANY WARRANTY.
|
|---|
| 8 | ! *
|
|---|
| 9 | ! * Permission to use, copy, modify and distribute this software and its
|
|---|
| 10 | ! * documentation for any purpose is hereby granted without fee,
|
|---|
| 11 | ! * provided that the above copyright notice appear in all copies and
|
|---|
| 12 | ! * that both that copyright notice and this permission notice appear
|
|---|
| 13 | ! * in supporting documentation. It is provided "as is" without express
|
|---|
| 14 | ! * or implied warranty.
|
|---|
| 15 | ! *
|
|---|
| 16 | !
|
|---|
| 17 | !
|
|---|
| 18 | ! Author(s): Thomas Bretz 3/2004 <mailto:tbretz@astro.uni-wuerzburg.de>
|
|---|
| 19 | ! Author(s): Abelardo Moralejo 1/2005 <mailto:moralejo@pd.infn.it>
|
|---|
| 20 | !
|
|---|
| 21 | ! Copyright: MAGIC Software Development, 2000-2005
|
|---|
| 22 | !
|
|---|
| 23 | !
|
|---|
| 24 | \* ======================================================================== */
|
|---|
| 25 |
|
|---|
| 26 | //////////////////////////////////////////////////////////////////////////////
|
|---|
| 27 | //
|
|---|
| 28 | // MSrcPosCalc
|
|---|
| 29 | //
|
|---|
| 30 | // Calculate the current source position in the camera from the (possibly
|
|---|
| 31 | // already corrected, by starguider) J2000 sky coordinates of the camera
|
|---|
| 32 | // center (contained in MPointingPos), and the source J2000 sky
|
|---|
| 33 | // coordinates contained in MSourcePos (of type MPointingPos as well). If
|
|---|
| 34 | // no MSourcePos is found in the parameter list, source position is
|
|---|
| 35 | // assumed to be the same for all events, that specified in MSrcPosCam
|
|---|
| 36 | // (if it already existed in the parameter list), or (0,0), the center of
|
|---|
| 37 | // the camera, if no MSrcPosCam was present in the parameter list. In both
|
|---|
| 38 | // cases, no calculation is necessary and then the PreProcess returns
|
|---|
| 39 | // kSKIP so that the task is removed from the task list.
|
|---|
| 40 | //
|
|---|
| 41 | // The conversion factor between the camera plain (mm) and the sky (deg)
|
|---|
| 42 | // is taken from MGeomCam. The time is taken from MTime, and the
|
|---|
| 43 | // coordinates of the observatory from MObservatory.
|
|---|
| 44 | //
|
|---|
| 45 | // Input Container:
|
|---|
| 46 | // MPointingPos
|
|---|
| 47 | // MObservatory
|
|---|
| 48 | // MGeomCam
|
|---|
| 49 | // MTime
|
|---|
| 50 | // [MSourcePos] (of type MPointingPos)
|
|---|
| 51 | //
|
|---|
| 52 | // Output Container:
|
|---|
| 53 | // MSrcPosCam
|
|---|
| 54 | //
|
|---|
| 55 | // To be done:
|
|---|
| 56 | // - a switch between using sky-coordinates and time or local-coordinates
|
|---|
| 57 | // from MPointingPos for determine the rotation angle
|
|---|
| 58 | ///// NOTE, A. Moralejo: the above is not possible if MAstroSky2Local does not
|
|---|
| 59 | ///// account for precession and nutation.
|
|---|
| 60 | //
|
|---|
| 61 | // - the center of rotation need not to be the camera center
|
|---|
| 62 | ///// NOTE, A. Moralejo: I don't see the need for special code either.
|
|---|
| 63 | //
|
|---|
| 64 | //////////////////////////////////////////////////////////////////////////////
|
|---|
| 65 | #include "MSrcPosCalc.h"
|
|---|
| 66 |
|
|---|
| 67 | #include <TVector2.h>
|
|---|
| 68 |
|
|---|
| 69 | #include "MParList.h"
|
|---|
| 70 |
|
|---|
| 71 | #include "MLog.h"
|
|---|
| 72 | #include "MLogManip.h"
|
|---|
| 73 |
|
|---|
| 74 | #include "MGeomCam.h"
|
|---|
| 75 | #include "MObservatory.h"
|
|---|
| 76 | #include "MPointingPos.h"
|
|---|
| 77 | #include "MPointingDev.h"
|
|---|
| 78 | #include "MSrcPosCam.h"
|
|---|
| 79 | #include "MRawRunHeader.h"
|
|---|
| 80 | #include "MMcCorsikaRunHeader.h"
|
|---|
| 81 |
|
|---|
| 82 | #include "MAstro.h"
|
|---|
| 83 | #include "MVector3.h"
|
|---|
| 84 | #include "MAstroSky2Local.h"
|
|---|
| 85 |
|
|---|
| 86 | ClassImp(MSrcPosCalc);
|
|---|
| 87 |
|
|---|
| 88 | using namespace std;
|
|---|
| 89 |
|
|---|
| 90 | // --------------------------------------------------------------------------
|
|---|
| 91 | //
|
|---|
| 92 | // Initialize fY and fY with 0
|
|---|
| 93 | //
|
|---|
| 94 | MSrcPosCalc::MSrcPosCalc(const char *name, const char *title)
|
|---|
| 95 | : fObservatory(NULL), fPointPos(NULL), fSourcePos(NULL), fDeviation(NULL),
|
|---|
| 96 | fSrcPosCam(NULL), fSrcPosAnti(NULL), fGeom(NULL), fTime(NULL), fMode(kDefault)
|
|---|
| 97 | {
|
|---|
| 98 | fName = name ? name : "MSrcPosCalc";
|
|---|
| 99 | fTitle = title ? title : "Calculates the source position in the camera";
|
|---|
| 100 |
|
|---|
| 101 | AddToBranchList("MTime.*");
|
|---|
| 102 | AddToBranchList("MPointingPos.*");
|
|---|
| 103 | }
|
|---|
| 104 |
|
|---|
| 105 | // --------------------------------------------------------------------------
|
|---|
| 106 | //
|
|---|
| 107 | // delete fSourcePos if kIsOwner
|
|---|
| 108 | // set fSourcePos to NULL
|
|---|
| 109 | //
|
|---|
| 110 | void MSrcPosCalc::FreeSourcePos()
|
|---|
| 111 | {
|
|---|
| 112 | if (fSourcePos && TestBit(kIsOwner))
|
|---|
| 113 | delete fSourcePos;
|
|---|
| 114 |
|
|---|
| 115 | fSourcePos = NULL;
|
|---|
| 116 | }
|
|---|
| 117 |
|
|---|
| 118 | // --------------------------------------------------------------------------
|
|---|
| 119 | //
|
|---|
| 120 | // ra [h]
|
|---|
| 121 | // dec [deg]
|
|---|
| 122 | //
|
|---|
| 123 | void MSrcPosCalc::SetSourcePos(Double_t ra, Double_t dec)
|
|---|
| 124 | {
|
|---|
| 125 | FreeSourcePos();
|
|---|
| 126 |
|
|---|
| 127 | fSourcePos = new MPointingPos("MSourcePos");
|
|---|
| 128 | fSourcePos->SetSkyPosition(ra, dec);
|
|---|
| 129 |
|
|---|
| 130 | SetOwner();
|
|---|
| 131 | }
|
|---|
| 132 |
|
|---|
| 133 | // --------------------------------------------------------------------------
|
|---|
| 134 | //
|
|---|
| 135 | // Return ra/dec as string
|
|---|
| 136 | //
|
|---|
| 137 | TString MSrcPosCalc::GetRaDec(const MPointingPos &pos) const
|
|---|
| 138 | {
|
|---|
| 139 | const TString rstr = MAstro::Angle2Coordinate(pos.GetRa());
|
|---|
| 140 | const TString dstr = MAstro::Angle2Coordinate(pos.GetDec());
|
|---|
| 141 |
|
|---|
| 142 | return Form("Ra=%sh Dec=%sdeg", rstr.Data(), dstr.Data());
|
|---|
| 143 | }
|
|---|
| 144 |
|
|---|
| 145 | // --------------------------------------------------------------------------
|
|---|
| 146 | //
|
|---|
| 147 | // Search and if necessary create MSrcPosCam in the parameter list. Search
|
|---|
| 148 | // MSourcePos. If not found, do nothing else, and skip the task. If MSrcPosCam
|
|---|
| 149 | // did not exist before and has been created here, it will contain as source
|
|---|
| 150 | // position the camera center (0,0).
|
|---|
| 151 | // In the case that MSourcePos is found, go ahead in searching the rest of
|
|---|
| 152 | // necessary containers. The source position will be calculated for each
|
|---|
| 153 | // event in Process.
|
|---|
| 154 | //
|
|---|
| 155 | Int_t MSrcPosCalc::PreProcess(MParList *pList)
|
|---|
| 156 | {
|
|---|
| 157 | fSrcPosCam = (MSrcPosCam*)pList->FindCreateObj("MSrcPosCam");
|
|---|
| 158 | if (!fSrcPosCam)
|
|---|
| 159 | return kFALSE;
|
|---|
| 160 |
|
|---|
| 161 | fSrcPosAnti = (MSrcPosCam*)pList->FindCreateObj("MSrcPosCam", "MSrcPosAnti");
|
|---|
| 162 | if (!fSrcPosAnti)
|
|---|
| 163 | return kFALSE;
|
|---|
| 164 |
|
|---|
| 165 | if (!fSourcePos)
|
|---|
| 166 | {
|
|---|
| 167 | fSourcePos = (MPointingPos*)pList->FindObject("MSourcePos", "MPointingPos");
|
|---|
| 168 | if (!fSourcePos)
|
|---|
| 169 | {
|
|---|
| 170 | *fLog << inf;
|
|---|
| 171 | *fLog << "MSourcePos [MPointPos] not found... The source position" << endl;
|
|---|
| 172 | *fLog << "set in MSrcPosCam will be set to (0/0) or in the case" << endl;
|
|---|
| 173 | *fLog << "of Monte Carlo set to the appropriate wobble position." << endl;
|
|---|
| 174 | return kTRUE;
|
|---|
| 175 | }
|
|---|
| 176 | }
|
|---|
| 177 | // FIXME: Maybe we have to call FreeSourcePos in PostProcess()?
|
|---|
| 178 |
|
|---|
| 179 | fGeom = (MGeomCam*)pList->FindObject("MGeomCam");
|
|---|
| 180 | if (!fGeom)
|
|---|
| 181 | {
|
|---|
| 182 | *fLog << err << "MGeomCam not found... aborting." << endl;
|
|---|
| 183 | return kFALSE;
|
|---|
| 184 | }
|
|---|
| 185 |
|
|---|
| 186 | fPointPos = (MPointingPos*)pList->FindObject("MPointingPos");
|
|---|
| 187 | if (!fPointPos)
|
|---|
| 188 | {
|
|---|
| 189 | *fLog << err << "MPointingPos not found... aborting." << endl;
|
|---|
| 190 | return kFALSE;
|
|---|
| 191 | }
|
|---|
| 192 |
|
|---|
| 193 | fDeviation = (MPointingDev*)pList->FindObject("MPointingDev");
|
|---|
| 194 |
|
|---|
| 195 | *fLog << inf;
|
|---|
| 196 | //*fLog << "Pointing Position: " << GetRaDec(*fPointPos) << endl;
|
|---|
| 197 | *fLog << "Source Position: " << GetRaDec(*fSourcePos) << endl;
|
|---|
| 198 |
|
|---|
| 199 | // For the case ReInit is never called we try:
|
|---|
| 200 | fObservatory = (MObservatory*)pList->FindObject("MObservatory");
|
|---|
| 201 | fTime = (MTime*) pList->FindObject("MTime");
|
|---|
| 202 | fRunType = MRawRunHeader::kRTNone;
|
|---|
| 203 |
|
|---|
| 204 | return kTRUE;
|
|---|
| 205 | }
|
|---|
| 206 |
|
|---|
| 207 | // --------------------------------------------------------------------------
|
|---|
| 208 | //
|
|---|
| 209 | // If fIsWobbleMode==kFALSE set source position to v and anto-source
|
|---|
| 210 | // position to -v, if fIsWobbleMode==kTRUE vice versa.
|
|---|
| 211 | //
|
|---|
| 212 | void MSrcPosCalc::SetSrcPos(TVector2 v) const
|
|---|
| 213 | {
|
|---|
| 214 | if (fMode==kWobble)
|
|---|
| 215 | {
|
|---|
| 216 | fSrcPosAnti->SetXY(v);
|
|---|
| 217 | v *= -1;
|
|---|
| 218 | fSrcPosCam->SetXY(v);
|
|---|
| 219 | }
|
|---|
| 220 | else
|
|---|
| 221 | {
|
|---|
| 222 | fSrcPosCam->SetXY(v);
|
|---|
| 223 | v *= -1;
|
|---|
| 224 | fSrcPosAnti->SetXY(v);
|
|---|
| 225 | }
|
|---|
| 226 | }
|
|---|
| 227 |
|
|---|
| 228 | // --------------------------------------------------------------------------
|
|---|
| 229 | //
|
|---|
| 230 | // Checking for file type. If the file type is Monte Carlo the
|
|---|
| 231 | // source position is arbitrarily determined from the MC headers.
|
|---|
| 232 | //
|
|---|
| 233 | Bool_t MSrcPosCalc::ReInit(MParList *plist)
|
|---|
| 234 | {
|
|---|
| 235 | if (fMode==kOffData)
|
|---|
| 236 | {
|
|---|
| 237 | SetSrcPos(TVector2());
|
|---|
| 238 | return kTRUE;
|
|---|
| 239 | }
|
|---|
| 240 |
|
|---|
| 241 | MRawRunHeader *run = (MRawRunHeader*)plist->FindObject("MRawRunHeader");
|
|---|
| 242 | if (!run)
|
|---|
| 243 | {
|
|---|
| 244 | *fLog << err << "MRawRunHeader not found... aborting." << endl;
|
|---|
| 245 | return kFALSE;
|
|---|
| 246 | }
|
|---|
| 247 |
|
|---|
| 248 | fRunType = run->GetRunType();
|
|---|
| 249 |
|
|---|
| 250 | if (fRunType!=MRawRunHeader::kRTMonteCarlo)
|
|---|
| 251 | {
|
|---|
| 252 | fObservatory = (MObservatory*)plist->FindObject("MObservatory");
|
|---|
| 253 | if (!fObservatory)
|
|---|
| 254 | {
|
|---|
| 255 | *fLog << err << "MObservatory not found... aborting." << endl;
|
|---|
| 256 | return kFALSE;
|
|---|
| 257 | }
|
|---|
| 258 | fTime = (MTime*)plist->FindObject("MTime");
|
|---|
| 259 | if (!fTime)
|
|---|
| 260 | {
|
|---|
| 261 | *fLog << err << "MTime not found... aborting." << endl;
|
|---|
| 262 | return kFALSE;
|
|---|
| 263 | }
|
|---|
| 264 | return kTRUE;
|
|---|
| 265 | }
|
|---|
| 266 |
|
|---|
| 267 | MMcCorsikaRunHeader *h = (MMcCorsikaRunHeader*)plist->FindObject("MMcCorsikaRunHeader");
|
|---|
| 268 | if (!h)
|
|---|
| 269 | {
|
|---|
| 270 | *fLog << err << "MMcCorsikaRunHeader not found... aborting." << endl;
|
|---|
| 271 | return kFALSE;
|
|---|
| 272 | }
|
|---|
| 273 |
|
|---|
| 274 | TVector2 v(0, 0);
|
|---|
| 275 | if (h->GetWobbleMode()>0.5)
|
|---|
| 276 | v.Set(120., 0.);
|
|---|
| 277 | if (h->GetWobbleMode()<-0.5)
|
|---|
| 278 | v.Set(-120., 0.);
|
|---|
| 279 |
|
|---|
| 280 | SetSrcPos(v);
|
|---|
| 281 |
|
|---|
| 282 | *fLog << inf;
|
|---|
| 283 | *fLog << "Source Position set to x=" << fSrcPosCam->GetX() << "mm ";
|
|---|
| 284 | *fLog << "y=" << fSrcPosCam->GetY() << "mm" << endl;
|
|---|
| 285 |
|
|---|
| 286 | return kTRUE;
|
|---|
| 287 | }
|
|---|
| 288 |
|
|---|
| 289 | // --------------------------------------------------------------------------
|
|---|
| 290 | //
|
|---|
| 291 | // Loc0LocToCam
|
|---|
| 292 | //
|
|---|
| 293 | // Input : (theta0, phi0) direction for the position (0,0) in the camera
|
|---|
| 294 | // ( theta, phi) some other direction
|
|---|
| 295 | //
|
|---|
| 296 | // Output : (X, Y) position in the camera corresponding to (theta, phi)
|
|---|
| 297 | //
|
|---|
| 298 | TVector2 MSrcPosCalc::CalcXYinCamera(const MVector3 &pos0, const MVector3 &pos) const
|
|---|
| 299 | {
|
|---|
| 300 | const Double_t theta0 = pos0.Theta();
|
|---|
| 301 | const Double_t phi0 = pos0.Phi();
|
|---|
| 302 |
|
|---|
| 303 | const Double_t theta = pos.Theta();
|
|---|
| 304 | const Double_t phi = pos.Phi();
|
|---|
| 305 |
|
|---|
| 306 | //--------------------------------------------
|
|---|
| 307 |
|
|---|
| 308 | /* --- OLD ---
|
|---|
| 309 | const Double_t YC0 = TMath::Cos(theta0)*TMath::Tan(theta)*TMath::Cos(phi-phi0) - TMath::Sin(theta0);
|
|---|
| 310 | const Double_t YC1 = TMath::Cos(theta0) + TMath::Sin(theta0)*TMath::Tan(theta);
|
|---|
| 311 | const Double_t YC = YC0 / YC1;
|
|---|
| 312 |
|
|---|
| 313 | const Double_t XC0 = TMath::Cos(theta0) - YC*TMath::Sin(theta0);
|
|---|
| 314 | const Double_t XC = -TMath::Sin(phi-phi0) * TMath::Tan(theta) * XC0;
|
|---|
| 315 | */
|
|---|
| 316 |
|
|---|
| 317 | /* --- NEW --- Same as MSrcPosCorrect::CalcXYinCamera */
|
|---|
| 318 | const Double_t XC0 = TMath::Sin(theta)*TMath::Sin(phi-phi0);
|
|---|
| 319 | const Double_t XC1 = TMath::Cos(theta0)*TMath::Cos(theta);
|
|---|
| 320 | const Double_t XC2 = TMath::Sin(theta0)*TMath::Sin(theta)*TMath::Cos(phi-phi0);
|
|---|
| 321 |
|
|---|
| 322 | const Double_t YC0 = TMath::Sin(theta0)*TMath::Cos(theta);
|
|---|
| 323 | const Double_t YC1 = TMath::Cos(theta0)*TMath::Sin(theta)*TMath::Cos(phi-phi0);
|
|---|
| 324 |
|
|---|
| 325 | const Double_t XC = - XC0 / (XC1 + XC2);
|
|---|
| 326 | const Double_t YC = (-YC0+YC1) / (XC1 + XC2);
|
|---|
| 327 |
|
|---|
| 328 | //--------------------------------------------
|
|---|
| 329 | return TVector2(XC, YC);
|
|---|
| 330 | }
|
|---|
| 331 |
|
|---|
| 332 | // --------------------------------------------------------------------------
|
|---|
| 333 | //
|
|---|
| 334 | // Derotate fX/fY by the current rotation angle, set MSrcPosCam
|
|---|
| 335 | //
|
|---|
| 336 | Int_t MSrcPosCalc::Process()
|
|---|
| 337 | {
|
|---|
| 338 | if (fRunType==MRawRunHeader::kRTMonteCarlo || !fSourcePos || !fTime || !fObservatory || fMode==kOffData)
|
|---|
| 339 | {
|
|---|
| 340 | // If this is MC data do not change source position
|
|---|
| 341 | if (fRunType==MRawRunHeader::kRTMonteCarlo)
|
|---|
| 342 | return kTRUE;
|
|---|
| 343 |
|
|---|
| 344 | // For real data reset source position to 0/0
|
|---|
| 345 | SetSrcPos();
|
|---|
| 346 | return kTRUE;
|
|---|
| 347 | }
|
|---|
| 348 |
|
|---|
| 349 | // Set Sky coordinates of source, taken from container "MSourcePos"
|
|---|
| 350 | // of type MPointingPos. The sky coordinates must be J2000, as the
|
|---|
| 351 | // sky coordinates of the camera center that we get from the container
|
|---|
| 352 | // "MPointingPos" filled by the Drive.
|
|---|
| 353 | MVector3 pos; // pos: source position
|
|---|
| 354 | pos.SetRaDec(fSourcePos->GetRaRad(), fSourcePos->GetDecRad());
|
|---|
| 355 |
|
|---|
| 356 | // Convert sky coordinates of source to local coordinates. Warning! These are not the "true" local
|
|---|
| 357 | // coordinates, since this transformation ignores precession and nutation effects.
|
|---|
| 358 | const MAstroSky2Local conv(*fTime, *fObservatory);
|
|---|
| 359 | pos *= conv;
|
|---|
| 360 |
|
|---|
| 361 | // Set sky coordinates of camera center in pos0, and then convert to
|
|---|
| 362 | // local. Same comment as above. These coordinates differ from the true
|
|---|
| 363 | // local coordinates of the camera center that one could get from
|
|---|
| 364 | // "MPointingPos", calculated by the Drive: the reason is that the Drive
|
|---|
| 365 | // takes into account precession and nutation corrections, while
|
|---|
| 366 | // MAstroSky2Local (as of Jan 27 2005 at least) does not. Since we just
|
|---|
| 367 | // want to get the source position on the camera from the local
|
|---|
| 368 | // coordinates of the center and the source, it does not matter that
|
|---|
| 369 | // the coordinates contained in pos and pos0 ignore precession and
|
|---|
| 370 | // nutation... since the shift would be the same in both cases. What
|
|---|
| 371 | // would be wrong is to set in pos0 directly the local coordinates
|
|---|
| 372 | // found in MPointingPos!
|
|---|
| 373 | MVector3 pos0; // pos0: camera center
|
|---|
| 374 | pos0.SetRaDec(fPointPos->GetRaRad(), fPointPos->GetDecRad());
|
|---|
| 375 | pos0 *= conv;
|
|---|
| 376 |
|
|---|
| 377 | TVector2 vx;
|
|---|
| 378 | if (fDeviation)
|
|---|
| 379 | {
|
|---|
| 380 | //vx = CalcXYinCamera(pos0, pos)*fGeom->GetCameraDist()*1000;
|
|---|
| 381 | pos0.SetZdAz(pos0.Theta()-fDeviation->GetDevZdRad(),
|
|---|
| 382 | pos0.Phi() -fDeviation->GetDevAzRad());
|
|---|
| 383 | }
|
|---|
| 384 |
|
|---|
| 385 | // Calculate source position in camera, and convert to mm:
|
|---|
| 386 | TVector2 v = CalcXYinCamera(pos0, pos)*fGeom->GetCameraDist()*1000;
|
|---|
| 387 |
|
|---|
| 388 | if (fDeviation)
|
|---|
| 389 | v -= fDeviation->GetDevXY();
|
|---|
| 390 |
|
|---|
| 391 | SetSrcPos(v);
|
|---|
| 392 |
|
|---|
| 393 | return kTRUE;
|
|---|
| 394 | }
|
|---|
| 395 |
|
|---|
| 396 | // --------------------------------------------------------------------------
|
|---|
| 397 | //
|
|---|
| 398 | // Convert a coordinate stored in str into a double, stored in ret.
|
|---|
| 399 | // Returns kTRUE on success, otherwise kFALSE
|
|---|
| 400 | //
|
|---|
| 401 | // Allowed formats are:
|
|---|
| 402 | // 12.5
|
|---|
| 403 | // -12.5
|
|---|
| 404 | // +12.5
|
|---|
| 405 | // -12:30:00.0
|
|---|
| 406 | // 12:30:00.0
|
|---|
| 407 | // +12:30:00.0
|
|---|
| 408 | //
|
|---|
| 409 | Bool_t MSrcPosCalc::GetCoordinate(TString str, Double_t &ret) const
|
|---|
| 410 | {
|
|---|
| 411 | str = str.Strip(TString::kBoth);
|
|---|
| 412 |
|
|---|
| 413 | if (str.First(':')<0)
|
|---|
| 414 | {
|
|---|
| 415 | ret = str.Atof();
|
|---|
| 416 | return kTRUE;
|
|---|
| 417 | }
|
|---|
| 418 |
|
|---|
| 419 | if (MAstro::Coordinate2Angle(str, ret))
|
|---|
| 420 | return kTRUE;
|
|---|
| 421 |
|
|---|
| 422 | *fLog << err << GetDescriptor() << endl;
|
|---|
| 423 | *fLog << "Interpretation of Coordinate '" << str << "' not successfull... abort." << endl;
|
|---|
| 424 | *fLog << "Corrdinate must have the format: '-12:30:00.0', '12:30:00.0' or '+12:30:00.0'" << endl;
|
|---|
| 425 | return kFALSE;
|
|---|
| 426 | }
|
|---|
| 427 |
|
|---|
| 428 | // --------------------------------------------------------------------------
|
|---|
| 429 | //
|
|---|
| 430 | // Read the setup from a TEnv, eg:
|
|---|
| 431 | // MSrcPosCalc.SourceRa: ra
|
|---|
| 432 | // MSrcPosCalc.SourceDec: dec
|
|---|
| 433 | // MSrcPosCalc.SourcePos: ra dec
|
|---|
| 434 | //
|
|---|
| 435 | // For format of 'ra' and 'dec' see GetCoordinate()
|
|---|
| 436 | //
|
|---|
| 437 | // Coordinates are J2000.0
|
|---|
| 438 | //
|
|---|
| 439 | Int_t MSrcPosCalc::ReadEnv(const TEnv &env, TString prefix, Bool_t print)
|
|---|
| 440 | {
|
|---|
| 441 | Double_t ra=0;
|
|---|
| 442 | Double_t dec=0;
|
|---|
| 443 |
|
|---|
| 444 | if (IsEnvDefined(env, prefix, "SourceRaDec", print))
|
|---|
| 445 | {
|
|---|
| 446 | TString str = GetEnvValue(env, prefix, "SourceRaDec", "");
|
|---|
| 447 | str = str.Strip(TString::kBoth);
|
|---|
| 448 |
|
|---|
| 449 | const Ssiz_t pos = str.First(' ');
|
|---|
| 450 | if (pos<0)
|
|---|
| 451 | {
|
|---|
| 452 | *fLog << err << GetDescriptor() << "SourceRaDec empty... abort." << endl;
|
|---|
| 453 | return kERROR;
|
|---|
| 454 | }
|
|---|
| 455 |
|
|---|
| 456 | if (!GetCoordinate(str(0, pos), ra))
|
|---|
| 457 | return kERROR;
|
|---|
| 458 | if (!GetCoordinate(str(pos+1, str.Length()), dec))
|
|---|
| 459 | return kERROR;
|
|---|
| 460 |
|
|---|
| 461 | SetSourcePos(ra, dec);
|
|---|
| 462 | return kTRUE;
|
|---|
| 463 | }
|
|---|
| 464 |
|
|---|
| 465 | Bool_t rc = kFALSE;
|
|---|
| 466 | if (IsEnvDefined(env, prefix, "SourceRa", print))
|
|---|
| 467 | {
|
|---|
| 468 | TString str = GetEnvValue(env, prefix, "SourceRa", "");
|
|---|
| 469 |
|
|---|
| 470 | if (!GetCoordinate(str, ra))
|
|---|
| 471 | return kERROR;
|
|---|
| 472 |
|
|---|
| 473 | rc = kTRUE;
|
|---|
| 474 | }
|
|---|
| 475 |
|
|---|
| 476 | if (IsEnvDefined(env, prefix, "SourceDec", print))
|
|---|
| 477 | {
|
|---|
| 478 | TString str = GetEnvValue(env, prefix, "SourceDec", "");
|
|---|
| 479 |
|
|---|
| 480 | if (!GetCoordinate(str, dec))
|
|---|
| 481 | return kERROR;
|
|---|
| 482 |
|
|---|
| 483 | rc = kTRUE;
|
|---|
| 484 | }
|
|---|
| 485 |
|
|---|
| 486 | if (!rc)
|
|---|
| 487 | return kFALSE;
|
|---|
| 488 |
|
|---|
| 489 | SetSourcePos(ra, dec);
|
|---|
| 490 | return kTRUE;
|
|---|
| 491 | }
|
|---|