Skip to content
Snippets Groups Projects
Commit c7e063d1 authored by Chad Lantz's avatar Chad Lantz
Browse files

Changed call to LowPassFilter to use the raw waveform instead of the processed waveform

parent bc328592
No related branches found
No related tags found
No related merge requests found
...@@ -163,7 +163,7 @@ void WFAnalysis::AnalyzeEvent( const std::vector< Channel* > vCh ){ ...@@ -163,7 +163,7 @@ void WFAnalysis::AnalyzeEvent( const std::vector< Channel* > vCh ){
//Apply filters as requested by the user //Apply filters as requested by the user
if( Ch->doMedianFilter ) MedianFilter( Ch ); if( Ch->doMedianFilter ) MedianFilter( Ch );
if( Ch->doLPF ) LowPassFilter( Ch, hProcessed ); if( Ch->doLPF ) LowPassFilter( Ch, h );
//If the hit window has been fixed by the user, set was_hit to true and set the //If the hit window has been fixed by the user, set was_hit to true and set the
//hit window to the user provided values //hit window to the user provided values
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment