PandaRoot
PndHypDigiPar.h
Go to the documentation of this file.
1 //****************************************************************************
2 //* This file is part of PandaRoot. *
3 //* *
4 //* PandaRoot is distributed under the terms of the *
5 //* GNU General Public License (GPL) version 3, *
6 //* copied verbatim in the file "LICENSE". *
7 //* *
8 //* Copyright (C) 2006 - 2024 FAIR GmbH and copyright holders of PandaRoot *
9 //* The copyright holders are listed in the file "COPYRIGHTHOLDERS". *
10 //* The authors are listed in the file "AUTHORS". *
11 //****************************************************************************
12 
13 //
14 // C++ Interface: MvdDigiPar
15 //
16 // Description:
17 //
18 //
19 // Author: t.stockmanns <stockman@ikp455>, (C) 2007
20 //
21 // Copyright: See COPYING file that comes with this distribution
22 //
24 
25 #ifndef PNDHYPDIGIPAR_H
26 #define PNDHYPDIGIPAR_H
27 
28 #include "FairParGenericSet.h"
29 #include "FairParamList.h"
30 
31 class PndHypDigiPar : public FairParGenericSet {
32  public:
33  Double_t dimX; // PixelDimension in x
34  Double_t dimY; // PixelDimension in y
35  // Double_t skew; // skewing angle if one exists
36  Double_t threshold; // Discriminator threshold
37  Double_t noise; // Complete noise including threshold dispersion
38  // Text_t sensName; // Sensor name (Strip, Pixel, etc...)
39  // Text_t feName; // Frontend name (APV25, nyxiter, ...)
40 
41  PndHypDigiPar(const char *name = "PndHypParTest", const char *title = "Hyp digi parameter", const char *context = "TestDefaultContext");
42  ~PndHypDigiPar(void){};
43  void clear(void){};
44  void putParams(FairParamList *list);
45  Bool_t getParams(FairParamList *list);
47 };
48 
49 #endif
void putParams(FairParamList *list)
~PndHypDigiPar(void)
Definition: PndHypDigiPar.h:42
ClassDef(PndHypDigiPar, 2)
Bool_t getParams(FairParamList *list)
PndHypDigiPar(const char *name="PndHypParTest", const char *title="Hyp digi parameter", const char *context="TestDefaultContext")
void clear(void)
Definition: PndHypDigiPar.h:43
Double_t noise
Definition: PndHypDigiPar.h:37
Double_t threshold
Definition: PndHypDigiPar.h:36
Double_t dimY
Definition: PndHypDigiPar.h:34
Double_t dimX
Definition: PndHypDigiPar.h:33