Changeset 13423
- Timestamp:
- 04/24/12 11:00:37 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
fact/tools/rootmacros/Region.h
r12257 r13423 1 1 2 // file: Region.h 3 // 4 // for details please read fpeakWriteRoot.C 2 5 #ifndef __REGION_H 3 6 #define __REGION_H 4 7 5 typedef struct 6 { 7 int begin; 8 int maxPos; 9 int end; 10 float maxVal; 11 } 12 Region; 8 typedef struct 9 { 10 int begin; // left border of search window 11 int maxPos; // position of Maximum within search window 12 int end; // right border of search window 13 float maxVal; // Height of maximum within search window (in mV) 14 int halfRisingEdgePos; 15 float slopeOfRisingEdge; 16 } 17 Region; 13 18 14 19
Note:
See TracChangeset
for help on using the changeset viewer.