Last change
on this file since 13534 was 13534, checked in by neise, 13 years ago |
added a lot of includes
|
-
Property svn:executable
set to
*
|
File size:
677 bytes
|
Line | |
---|
1 | #ifndef __DRS_CALIBRATION__H
|
---|
2 | #define __DRS_CALIBRATION__H
|
---|
3 |
|
---|
4 | #include <vector>
|
---|
5 | #include <stdint.h>
|
---|
6 |
|
---|
7 | float getValue( int slice, int pixel,
|
---|
8 | vector<float> &drs_basemean,
|
---|
9 | vector<float> &drs_gainmean,
|
---|
10 | vector<float> &drs_triggeroffsetmean,
|
---|
11 | UInt_t RegionOfInterest,
|
---|
12 | vector<int16_t> AllPixelDataVector,
|
---|
13 | vector<int16_t> StartCellVector
|
---|
14 | );
|
---|
15 |
|
---|
16 | size_t applyDrsCalibration( vector<float> &destination,
|
---|
17 | int pixel,
|
---|
18 | int LeaveOutLeft,
|
---|
19 | int LeaveOutRight,
|
---|
20 | vector<float> &drs_basemean,
|
---|
21 | vector<float> &drs_gainmean,
|
---|
22 | vector<float> &drs_triggeroffsetmean,
|
---|
23 | UInt_t RegionOfInterest,
|
---|
24 | vector<int16_t> AllPixelDataVector,
|
---|
25 | vector<int16_t> StartCellVector,
|
---|
26 | int verbosityLevel = 1
|
---|
27 | );
|
---|
28 |
|
---|
29 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.