Changeset 18580
- Timestamp:
- 09/06/16 10:35:30 (8 years ago)
- Location:
- trunk/Mars/mpointing
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mpointing/MSrcPosCam.cc
r8912 r18580 34 34 #include "MSrcPosCam.h" 35 35 36 #include <fstream>36 #include "fits.h" 37 37 38 38 #include <TMarker.h> … … 172 172 out << " " << GetUniqueName() << ".SetXY(" << fX << ", " << fY << ");" << endl; 173 173 } 174 175 Bool_t MSrcPosCam::SetupFits(fits &fin) 176 { 177 if (!fin.SetRefAddress(Form("%s.fX", fName.Data()), fX)) return kFALSE; 178 if (!fin.SetRefAddress(Form("%s.fY", fName.Data()), fY)) return kFALSE; 179 180 return kTRUE; 181 } -
trunk/Mars/mpointing/MSrcPosCam.h
r14447 r18580 8 8 #include <TMath.h> 9 9 10 class fits; 10 11 class TVector2; 11 12 … … 43 44 //void AsciiWrite(ofstream &fout) const; 44 45 46 Bool_t SetupFits(fits &fin); 47 45 48 ClassDef(MSrcPosCam, 1) // container to store source position in the camera plain 46 49 };
Note:
See TracChangeset
for help on using the changeset viewer.