mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-14 13:57:13 +02:00
modify RawDataProcess_filetxt
This commit is contained in:
@ -11,7 +11,7 @@
|
|||||||
#define RAWDATA
|
#define RAWDATA
|
||||||
|
|
||||||
#if !defined JFSTRX && !defined JFSTRXOLD && !defined JFSTRXCHIP1 && \
|
#if !defined JFSTRX && !defined JFSTRXOLD && !defined JFSTRXCHIP1 && \
|
||||||
!defined JFSTRXCHIP6
|
!defined JFSTRXCHIP6 && !defined CHIP
|
||||||
#ifndef MODULE
|
#ifndef MODULE
|
||||||
#include "jungfrauHighZSingleChipData.h"
|
#include "jungfrauHighZSingleChipData.h"
|
||||||
#endif
|
#endif
|
||||||
@ -20,6 +20,10 @@
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef CHIP
|
||||||
|
#include "jungfrauSingleChipData.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef JFSTRX
|
#ifdef JFSTRX
|
||||||
#include "jungfrauLGADStrixelsData_new.h"
|
#include "jungfrauLGADStrixelsData_new.h"
|
||||||
#endif
|
#endif
|
||||||
@ -176,7 +180,7 @@ int main(int argc, char *argv[]) {
|
|||||||
|
|
||||||
// Define decoders...
|
// Define decoders...
|
||||||
#if !defined JFSTRX && !defined JFSTRXOLD && !defined JFSTRXCHIP1 && \
|
#if !defined JFSTRX && !defined JFSTRXOLD && !defined JFSTRXCHIP1 && \
|
||||||
!defined JFSTRXCHIP6
|
!defined JFSTRXCHIP6 && !defined CHIP
|
||||||
#ifndef MODULE
|
#ifndef MODULE
|
||||||
jungfrauHighZSingleChipData *decoder = new jungfrauHighZSingleChipData();
|
jungfrauHighZSingleChipData *decoder = new jungfrauHighZSingleChipData();
|
||||||
int nx = 256, ny = 256;
|
int nx = 256, ny = 256;
|
||||||
@ -187,6 +191,12 @@ int main(int argc, char *argv[]) {
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef CHIP
|
||||||
|
std::cout << "Jungfrau pixel module single chip readout" << std::endl;
|
||||||
|
jungfrauSingleChipData *decoder = new jungfrauSingleChipData();
|
||||||
|
int nx = 256, ny = 256;
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef JFSTRX
|
#ifdef JFSTRX
|
||||||
cout << "Jungfrau strixel full module readout" << endl;
|
cout << "Jungfrau strixel full module readout" << endl;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user