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

Last change on this file since 17689 was 15371, checked in by Jens Buss, 11 years ago
add some new parameters
  • Property svn:executable set to *
File size: 888 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 int cfdMinPos;
20 int cfdNegZerocrossing;
21 int cfdPosZerocrossing;
22 float halfHeight;
23 float maxSlope; // Height of maximum within search window (in mV)
24 int maxSlopePos; // Height of maximum within search window (in mV)
25 }
26 Region;
27
28
29#endif
Note: See TracBrowser for help on using the repository browser.