File tree Expand file tree Collapse file tree
sbndcode/OpDetReco/OpDeconvolution/Alg Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ opdet::OpDeconvolutionAlgWiener::OpDeconvolutionAlgWiener(fhicl::ParameterSet co
109109{
110110 // read fhicl paramters
111111 fDebug = p.get < bool >(" Debug" );
112- fMaxFFTSizePow = p.get < int >(" MaxFFTSizePow" , 15 );
112+ fMaxFFTSizePow = p.get < int >(" MaxFFTSizePow" );
113113 fPositivePolarity = p.get < bool >(" PositivePolarity" );
114114 fUseSaturated = p.get < bool >(" UseSaturated" );
115115 fADCSaturationValue = p.get < int >(" ADCSaturationValue" );
@@ -118,11 +118,9 @@ opdet::OpDeconvolutionAlgWiener::OpDeconvolutionAlgWiener(fhicl::ParameterSet co
118118 fExpoAvSmoothPar = p.get < float >(" ExpoAvSmoothPar" );
119119 fUnAvNeighbours = p.get < short unsigned int >(" UnAvNeighbours" );
120120 fHypoSignalTimeWindow = p.get < double >(" HypoSignalTimeWindow" );
121- fHypoSignalCustom = p.get < bool >(" HypoSignalCustom" , false );
122- if (fHypoSignalCustom ){
123- fHypoSignalTimeConsts = p.get < std::vector<double > >(" HypoSignalTimeConsts" );
124- fHypoSignalWeights = p.get < std::vector<double > >(" HypoSignalWeights" );
125- }
121+ fHypoSignalCustom = p.get < bool >(" HypoSignalCustom" );
122+ fHypoSignalTimeConsts = p.get < std::vector<double > >(" HypoSignalTimeConsts" );
123+ fHypoSignalWeights = p.get < std::vector<double > >(" HypoSignalWeights" );
126124 fHypoSignalScale = p.get < double >(" HypoSignalScale" );
127125 fPMTChargeToADC = p.get < double >(" PMTChargeToADC" );
128126 fDecoWaveformPrecision = p.get < double >(" DecoWaveformPrecision" );
You can’t perform that action at this time.
0 commit comments