- Timestamp:
- 11/25/15 17:35:48 (9 years ago)
- Location:
- trunk/src
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/CalibrationManager.cpp
r3037 r3085 10 10 // 11 11 // 12 13 // ASAP 14 #include "CalibrationManager.h" 15 #include "Scantable.h" 16 #include "STCalTsys.h" 17 #include "STCalSkyPSAlma.h" 18 #include "STCalSkyOtfAlma.h" 19 12 20 #include <assert.h> 13 21 … … 21 29 #include <measures/TableMeasures/ScalarMeasColumn.h> 22 30 23 24 #include "CalibrationManager.h"25 #include "Scantable.h"26 #include "STCalTsys.h"27 #include "STCalSkyPSAlma.h"28 #include "STCalSkyOtfAlma.h"29 31 30 32 using namespace casa; -
trunk/src/CalibrationManager.h
r2923 r3085 13 13 #define ASAP_CALIBRATION_MANAGER_H 14 14 15 // ASAP 16 // ScantableWrapper.h must be included first to avoid compiler warnings 17 // related with _XOPEN_SOURCE 18 #include "ScantableWrapper.h" 19 #include "STApplyCal.h" 20 #include "STCalTsys.h" 21 #include "STCalibration.h" 22 #include "STCalEnum.h" 23 15 24 #include <string> 16 25 #include <vector> … … 21 30 #include <casa/Utilities/CountedPtr.h> 22 31 #include <casa/Logging/LogIO.h> 23 24 #include "ScantableWrapper.h"25 #include "STApplyCal.h"26 #include "STCalTsys.h"27 #include "STCalibration.h"28 #include "STCalEnum.h"29 32 30 33 namespace asap { -
trunk/src/PlotHelper.cpp
r2951 r3085 10 10 // 11 11 // 12 13 // ASAP 14 #include "PlotHelper.h" 12 15 13 16 // casacore … … 21 24 #include <tables/Tables/TableRecord.h> 22 25 23 24 #include "PlotHelper.h"25 26 26 27 #define SMALL_ANGLE 1.0e-7 -
trunk/src/PlotHelper.h
r2719 r3085 13 13 #define ASAPPLOTHELPER_H 14 14 15 // ASAP 16 // ScantableWrapper.h must be included first to avoid compiler warnings 17 // related with _XOPEN_SOURCE 18 #include "ScantableWrapper.h" 19 #include "Scantable.h" 20 15 21 // STL 16 22 #include <iostream> … … 21 27 #include <casa/Utilities/CountedPtr.h> 22 28 #include <coordinates/Coordinates/DirectionCoordinate.h> 23 24 #include "ScantableWrapper.h"25 #include "Scantable.h"26 29 27 30 namespace asap { -
trunk/src/STGrid.cpp
r3084 r3085 10 10 // 11 11 // 12 13 // ASAP 14 // STGrid must be included first to avoid compiler warning related 15 // with _XOPEN_SOURCE 16 #include "STGrid.h" 17 #include "MathUtils.h" 18 #include <atnf/PKSIO/SrcType.h> 19 12 20 #include <casa/BasicSL/String.h> 13 21 #include <casa/Arrays/Vector.h> … … 29 37 30 38 #include <measures/Measures/MDirection.h> 31 32 #include "MathUtils.h"33 #include <atnf/PKSIO/SrcType.h>34 35 #include "STGrid.h"36 39 37 40 using namespace std ; -
trunk/src/STGrid.h
r2851 r3085 12 12 #ifndef ASAPSTGRID_H 13 13 #define ASAPSTGRID_H 14 15 // ASAP 16 // ScantableWrapper.h must be included first to avoid compiler warnings 17 // related with _XOPEN_SOURCE 18 #include "ScantableWrapper.h" 19 #include "Scantable.h" 20 #include "concurrent.h" 14 21 15 22 #include <iostream> … … 29 36 30 37 #include <coordinates/Coordinates/DirectionCoordinate.h> 31 32 #include "ScantableWrapper.h"33 #include "Scantable.h"34 #include "concurrent.h"35 38 36 39 using namespace std ; -
trunk/src/STLineFinder.cpp
r3029 r3085 30 30 //#--------------------------------------------------------------------------- 31 31 32 33 32 // ASAP 34 33 #include "STLineFinder.h" -
trunk/src/STLineFinder.h
r3029 r3085 32 32 #define STLINEFINDER_H 33 33 34 // ASAP 35 #include "ScantableWrapper.h" 36 #include "Scantable.h" 37 34 38 // STL 35 39 #include <vector> … … 44 48 #include <casa/Utilities/Assert.h> 45 49 #include <casa/Utilities/CountedPtr.h> 46 47 // ASAP48 #include "ScantableWrapper.h"49 #include "Scantable.h"50 50 51 51 namespace asap { -
trunk/src/STSideBandSep.cpp
r2985 r3085 10 10 // 11 11 12 // STL13 #include <ctype.h>14 15 // cascore16 #include <casa/OS/File.h>17 #include <casa/Logging/LogIO.h>18 #include <casa/Quanta/QuantumHolder.h>19 20 #include <measures/Measures/MFrequency.h>21 #include <measures/Measures/MCFrequency.h>22 23 #include <tables/Tables/TableRow.h>24 #include <tables/Tables/TableRecord.h>25 #include <tables/Tables/TableVector.h>26 27 12 // asap 28 13 #include "STGrid.h" … … 30 15 #include "MathUtils.h" 31 16 #include "STSideBandSep.h" 17 18 // STL 19 #include <ctype.h> 20 21 // cascore 22 #include <casa/OS/File.h> 23 #include <casa/Logging/LogIO.h> 24 #include <casa/Quanta/QuantumHolder.h> 25 26 #include <measures/Measures/MFrequency.h> 27 #include <measures/Measures/MCFrequency.h> 28 29 #include <tables/Tables/TableRow.h> 30 #include <tables/Tables/TableRecord.h> 31 #include <tables/Tables/TableVector.h> 32 32 33 33 using namespace std ; -
trunk/src/Scantable.cpp
r3084 r3085 10 10 // 11 11 // 12 13 // ASAP 14 // STLineFinder must be included first to avoid compiler warnings related with _XOPEN_SOURCE 15 #include "STLineFinder.h" 16 #include "MathUtils.h" 17 #include "STAttr.h" 18 #include "STBaselineTable.h" 19 #include "STPolCircular.h" 20 #include "STPolLinear.h" 21 #include "STPolStokes.h" 22 #include "STUpgrade.h" 23 #include "STFitter.h" 24 #include "Scantable.h" 25 12 26 #include <map> 13 27 #include <sys/time.h> … … 65 79 #include <tables/Tables/TableRow.h> 66 80 #include <tables/Tables/TableVector.h> 67 68 #include "MathUtils.h"69 #include "STAttr.h"70 #include "STBaselineTable.h"71 #include "STLineFinder.h"72 #include "STPolCircular.h"73 #include "STPolLinear.h"74 #include "STPolStokes.h"75 #include "STUpgrade.h"76 #include "STFitter.h"77 #include "Scantable.h"78 81 79 82 #define debug 1 -
trunk/src/ScantableWrapper.h
r3052 r3085 13 13 #define ASAPSCANTABLEWRAPPER_H 14 14 15 #include <iostream> 16 #include <string> 17 #include <vector> 18 19 #include <casa/Arrays/Vector.h> 20 15 #include "GILHandler.h" 21 16 #include "MathUtils.h" 22 17 #include "Scantable.h" … … 24 19 #include "STFit.h" 25 20 #include "STFitEntry.h" 26 #include "GILHandler.h" 21 22 #include <iostream> 23 #include <string> 24 #include <vector> 25 26 #include <casa/Arrays/Vector.h> 27 27 28 28 namespace asap {
Note:
See TracChangeset
for help on using the changeset viewer.