Changeset 1530 in Sophya for trunk/ArchTOIPipe/ProcWSophya/toi2map.h
- Timestamp:
- Jun 14, 2001, 7:53:29 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ArchTOIPipe/ProcWSophya/toi2map.h
r1520 r1530 3 3 #define TOI2MAP_H 4 4 5 #include "toiprocessor.h" 5 6 #include "toiprocessor.h" 6 7 #include "spherehealpix.h" … … 41 42 inline void SetCoorOut(TypAstroCoord mfg=TypCoordGalStd) 42 43 {mTypCoorOut = mfg;} 44 // Test on flag value ? if yes, BAD sample have flag matching mBadFlag 45 inline void SetTestFlag(bool tflg=false, int_8 badflg=0) 46 {mTFlag = tflg; mBadFlag = badflg;} 47 // Test on min value ? if yes, GOOD sample have value >= mValMin 48 // Test on max value ? if yes, GOOD sample have value <= mValMax 49 // Good values are (mValMin <= sample value <= mValMax) 50 // bounds are included 51 inline void SetTestMin(bool tmin=false, r_8 vmin=-1.e30) 52 {mTMin = tmin; mValMin = vmin;} 53 inline void SetTestMax(bool tmax=false, r_8 vmax=+1.e30) 54 {mTMax = tmax; mValMax = vmax;} 55 // Print 56 void Print(ostream & os); 43 57 44 58 protected: … … 46 60 SphereHEALPix<r_8>* mWSph; 47 61 bool mWSphInternal; 62 48 63 TypAstroCoord mTypCoorIn, mTypCoorOut; 49 64 double mActualYear; 65 66 bool mTFlag,mTMin,mTMax; 67 int_8 mBadFlag; 68 r_8 mValMin,mValMax; 50 69 }; 51 70
Note:
See TracChangeset
for help on using the changeset viewer.