Changeset 13423


Ignore:
Timestamp:
04/24/12 11:00:37 (13 years ago)
Author:
Jens Buss
Message:
added slopeOfRisingEdge and halfRisingEdgePos
File:
1 edited

Legend:

Unmodified
Added
Removed
  • fact/tools/rootmacros/Region.h

    r12257 r13423  
     1
    12// file: Region.h
     3//
     4// for details please read fpeakWriteRoot.C
    25#ifndef __REGION_H
    36#define __REGION_H
    47
    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;
    1318
    1419
Note: See TracChangeset for help on using the changeset viewer.