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

Added FirstDerivative, FirstDerivativeRMS and CrossZeroPoints members to...

Added FirstDerivative, FirstDerivativeRMS and CrossZeroPoints members to Channel class. Deleted ProcessedWF class.
parent cc20899e
No related branches found
No related tags found
No related merge requests found
......@@ -52,6 +52,12 @@ class Channel {
std::vector < float > *pWF = &WF;
/** Histrogram for visualization and analysis of the waveform */
TH1D* WF_histo;
/** Histogram with first derivative **/
TH1D* FirstDerivative;
/** RMS value of the first derrivative of the waveform **/
double FirstDerivativeRMS;
/** Crossing zero points - dummy - to be checked by Sheng **/
std::vector < int > CrossZeroPoints;
};
......@@ -78,15 +84,5 @@ class Alignment {
};
class ProcessedWF {
public:
/** Histogram with first derivative **/
TH1D* FirstDerivative;
/** Crossing zero points - dummy - to be checked by Sheng **/
std::vector < int > CrossZeroPoints;
};
#endif
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