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

Last change on this file since 14811 was 14810, checked in by Jens Buss, 12 years ago
added length of Rising Edge
  • Property svn:executable set to *
File size: 574 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 interceptRisingEdge;
16 float slopeOfRisingEdge;
17 int lengthOfRisingEdge;
18 int distanceEdgeToMax;
19 }
20 Region;
21
22
23#endif
Note: See TracBrowser for help on using the repository browser.