Changeset 1190 in Sophya for trunk/SigPredictor
- Timestamp:
- Sep 19, 2000, 2:26:49 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SigPredictor/lightptsrclevsinband.h
r1185 r1190 4 4 #include <iostream> 5 5 #include <map> 6 #include <ostream>7 6 //#include "levsptsrc.h" 8 7 9 10 enum LevSPanckBand 11 { Giga30, 12 Giga44, 13 Giga70, 14 Giga100, 15 Giga143, 16 Giga217, 17 Giga352, 18 Giga545, 19 Giga857 20 }; 8 #include "levelsplanckband.h" 21 9 22 10 struct LevSPtSrcData … … 49 37 } 50 38 } 39 51 40 } 52 41 … … 54 43 55 44 struct LevSPtSrcCmpUnitVec 56 { bool operator () (const UnitVector& coord1, constUnitVector& coord2) const45 { bool operator()(const UnitVector& coord1, const UnitVector& coord2) const 57 46 { if ( coord1.Theta() < coord2.Theta() ) return true; 58 47 if ( coord1.Theta() == coord2.Theta() ) 59 { if ( coord1.Phi() > coord2.Phi() ) return true;48 { if ( coord1.Phi() > coord2.Phi() ) return true; 60 49 } 61 50 return false; … … 73 62 void print(ostream& out) 74 63 { out<< Name<<endl; } 64 void DumpMap(LevSPanckBand band); 65 // Write a Mollweide projection of the Point Sources Sky 66 // power in the LevSPanckBand band 67 75 68 protected: 76 69 void readLevSPtSrc(char HFIfile[]); 77 70 char Name[128]; 78 71 79 72 }; 80 73
Note:
See TracChangeset
for help on using the changeset viewer.