retval.addSection( new Rational( new Polynomial(t1), DT[1] ) );
}
else if ( order[0] == 1 ) {
retval.addSection( new Rational( new Polynomial(t1), DT[0] ) );
double[] t2 = new double[3];
double[] tc = Tsection.numerator().coefficients();
for ( int j = 0; j < 3; j++ ) t2[j] = tc[j+1];
retval.addSection( new Rational( new Polynomial(t2), DT[1] ) );
}
else if ( order[0] == 2 ) {
Polynomial[] NT = lptobpFactors( section.numerator(), BW, prod );