source: fact/tools/rootmacros/Region.h@ 13602

Last change on this file since 13602 was 13573, checked in by Jens Buss, 12 years ago
added value for the distance of maximum und half rising edge
  • Property svn:executable set to *
File size: 507 bytes
Line 
1
2// file: Region.h
3//
4// for details please read fpeakWriteRoot.C
5#ifndef __REGION_H
6#define __REGION_H
7
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 int distanceEdgeToMax;
17 }
18 Region;
19
20
21#endif
Note: See TracBrowser for help on using the repository browser.