Source
73
73
namespace refim {//# namespace for imaging refactor
74
74
using namespace casacore;
75
75
using namespace casa;
76
76
using namespace casacore;
77
77
using namespace casa::refim;
78
78
79
79
SimplePBConvFunc::SimplePBConvFunc(): nchan_p(-1),
80
80
npol_p(-1), pointToPix_p(), directionIndex_p(-1), thePix_p(0),
81
81
filledFluxScale_p(false),doneMainConv_p(0),
82
82
83
-
calcFluxScale_p(true), actualConvIndex_p(-1), convSize_p(0), convSupport_p(0), pointingPix_p(), usePointingTable_p(False) {
83
+
calcFluxScale_p(true), usePointingTable_p(False), actualConvIndex_p(-1), convSize_p(0), convSupport_p(0), pointingPix_p() {
84
84
//
85
85
86
86
pbClass_p=PBMathInterface::COMMONPB;
87
87
ft_p=FFT2D(true);
88
88
usePointingTable_p=False;
89
89
}
90
90
91
91
SimplePBConvFunc::SimplePBConvFunc(const PBMathInterface::PBClass typeToUse):
92
92
nchan_p(-1),npol_p(-1),pointToPix_p(),
93
93
directionIndex_p(-1), thePix_p(0), filledFluxScale_p(false),doneMainConv_p(0),
94
-
calcFluxScale_p(true), actualConvIndex_p(-1), convSize_p(0), convSupport_p(0), pointingPix_p(), usePointingTable_p(False) {
94
+
calcFluxScale_p(true), usePointingTable_p(False), actualConvIndex_p(-1), convSize_p(0), convSupport_p(0), pointingPix_p() {
95
95
//
96
96
pbClass_p=typeToUse;
97
97
ft_p=FFT2D(true);
98
98
usePointingTable_p=False;
99
99
}
100
100
SimplePBConvFunc::SimplePBConvFunc(const RecordInterface& rec, const Bool calcfluxneeded)
101
101
: nchan_p(-1),npol_p(-1),pointToPix_p(), directionIndex_p(-1), thePix_p(0), filledFluxScale_p(false),
102
102
doneMainConv_p(0),
103
-
calcFluxScale_p(calcfluxneeded), actualConvIndex_p(-1), convSize_p(0), convSupport_p(0), pointingPix_p(), usePointingTable_p(False)
103
+
calcFluxScale_p(calcfluxneeded), usePointingTable_p(False), actualConvIndex_p(-1), convSize_p(0), convSupport_p(0), pointingPix_p()
104
104
{
105
105
String err;
106
106
fromRecord(err, rec, calcfluxneeded);
107
107
ft_p=FFT2D(true);
108
108
usePointingTable_p=False;
109
109
}
110
110
SimplePBConvFunc::~SimplePBConvFunc(){
111
111
//
112
112
113
113
}