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