shaper for ZDC More...
#include <ZDCShape.h>
Public Member Functions | |
virtual double | operator() (double time) const |
virtual double | timeToRise () const |
ZDCShape (const ZDCShape &d) | |
ZDCShape () | |
virtual | ~ZDCShape () |
Private Member Functions | |
void | computeShapeZDC () |
Private Attributes | |
int | nbin_ |
std::vector< float > | nt_ |
shaper for ZDC
Definition at line 16 of file ZDCShape.h.
ZDCShape::ZDCShape | ( | ) |
Definition at line 4 of file ZDCShape.cc.
References computeShapeZDC().
: nbin_(256), nt_(nbin_, 0.) { computeShapeZDC(); }
ZDCShape::ZDCShape | ( | const ZDCShape & | d | ) |
Definition at line 12 of file ZDCShape.cc.
: CaloVShape(d), nbin_(d.nbin_), nt_(d.nt_) { }
virtual ZDCShape::~ZDCShape | ( | ) | [inline, virtual] |
Definition at line 23 of file ZDCShape.h.
{}
void ZDCShape::computeShapeZDC | ( | ) | [private] |
Definition at line 26 of file ZDCShape.cc.
References create_public_lumi_plots::exp, j, nbin_, and nt_.
Referenced by ZDCShape().
{ // cout << endl << " ===== computeShapeZDC !!! " << endl << endl; const float ts = 3.0; // time constant in t * exp(-(t/ts)**2) int j; float norm; // ZDC SHAPE norm = 0.0; for( j = 0; j < 3 * ts && j < nbin_; j++){ //nt_[j] = ((float)j)*exp(-((float)(j*j))/(ts*ts)); nt_[j] = j * exp(-(j*j)/(ts*ts)); norm += nt_[j]; } // normalize pulse area to 1.0 for( j = 0; j < 3 * ts && j < nbin_; j++){ nt_[j] /= norm; } }
double ZDCShape::operator() | ( | double | time | ) | const [virtual] |
Implements CaloVShape.
Definition at line 50 of file ZDCShape.cc.
double ZDCShape::timeToRise | ( | ) | const [virtual] |
int ZDCShape::nbin_ [private] |
Definition at line 32 of file ZDCShape.h.
Referenced by computeShapeZDC(), and operator()().
std::vector<float> ZDCShape::nt_ [private] |
Definition at line 33 of file ZDCShape.h.
Referenced by computeShapeZDC(), and operator()().