PandaRoot
BSEmcShashlykPulseshape.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 // Description:
15 // Experimentally derived Pulseshape of the form:
16 // f(x) = A * (t')^ N * exp(-N t')
17 //-----------------------------------------------------------
18 //#pragma once
19 #ifndef BSEMCSHASHLYKPULSESHAPE_H
20 #define BSEMCSHASHLYKPULSESHAPE_H
21 
22 #include "BSEmcAbsPulseshape.h"
23 
31 
32  public:
34  BSEmcShashlykPulseshape(Double_t mu, Double_t sigma);
36 
37  virtual Double_t operator()(const Double_t t, const Double_t amp, const Double_t toffset) const;
38 
39  private:
40  Double_t fMu;
41  Double_t fSigma;
42 
43  ClassDef(BSEmcShashlykPulseshape, 0)
44 };
45 
46 #endif /*BSEMCSHASHLYKPULSESHAPE_H*/
virtual Double_t operator()(const Double_t t, const Double_t amp, const Double_t toffset) const
pulseshape interface
Experimentally derived Pulseshape.