Source
88
88
// -----------------------------------------------------------------------
89
89
void ConvolutionTVI::initialize()
90
90
{
91
91
// Populate nchan input-output maps
92
92
Int spw;
93
93
uInt spw_idx = 0;
94
94
map<Int,vector<Int> >::iterator iter;
95
95
for(iter=spwInpChanIdxMap_p.begin();iter!=spwInpChanIdxMap_p.end();iter++)
96
96
{
97
97
spw = iter->first;
98
-
spwOutChanIdxMap_p[spw] = spwInpChanIdxMap_p[spw];
98
+
spwOutChanNumMap_p[spw] = spwInpChanIdxMap_p[spw].size();
99
99
100
100
spw_idx++;
101
101
}
102
102
103
103
return;
104
104
}
105
105
106
106
// -----------------------------------------------------------------------
107
107
//
108
108
// -----------------------------------------------------------------------