- Timestamp:
- 03/15/04 13:44:01 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mastro/MAstroCamera.cc
r3487 r3499 129 129 */ 130 130 131 v.Set(spot(1), spot(0));131 v.Set(spot(1), -spot(0)); 132 132 133 133 const Float_t max = fGeom->GetMaxRadius()*0.70; … … 267 267 if (hasdot) 268 268 { 269 TMarker *m=new TMarker(spot(1), spot(0), 1);269 TMarker *m=new TMarker(spot(1), -spot(0), 1); 270 270 m->SetBit(kCannotPick); 271 271 m->SetBit(kCanDelete); … … 275 275 } 276 276 if (h) 277 h->Fill(spot(1), spot(0), pow(10, -mag/2.5));277 h->Fill(spot(1), -spot(0), pow(10, -mag/2.5)); 278 278 279 279 if (usecam) 280 camera->Fill(spot(1), spot(0), pow(10, -mag/2.5));280 camera->Fill(spot(1), -spot(0), pow(10, -mag/2.5)); 281 281 282 282 num++; … … 286 286 mean *= 1./num; 287 287 288 DrawStar(mean(1), mean(0), *radec, !hasmean, Form("x=%.1fmm y=%.1fmm", mean(1),mean(0)));288 DrawStar(mean(1), -mean(0), *radec, !hasmean, Form("x=%.1fmm y=%.1fmm", mean(1), -mean(0))); 289 289 } 290 290 }
Note:
See TracChangeset
for help on using the changeset viewer.