/search.css" rel="stylesheet" type="text/css"/> /search.js">
00001 // After any changes, the dictionaries for 00002 // these classes must be regenerated: 00003 // rootcint -f PulseParams_dict.cc -c PulseParams.h PulseParams_LinkDef.h 00004 00005 #ifndef PPG_PULSEPARAMS_H 00006 #define PPG_PULSEPARAMS_H 00007 00008 #include <TTree.h> 00009 00010 class GausCubic { 00011 public: 00012 Double_t amp, mean, sigma; 00013 Double_t p0, p1, p2, p3; 00014 00015 ClassDef(GausCubic, 1); 00016 00017 virtual ~GausCubic() {} 00018 }; 00019 00020 class PulseParams { 00021 public: 00022 Int_t pmtIdx; 00023 Int_t fullPackedData; 00024 Int_t adc; 00025 GausCubic params; 00026 GausCubic err; // errors in parameters 00027 00028 ClassDef(PulseParams, 1); 00029 00030 virtual ~PulseParams() {} 00031 }; 00032 00033 #endif