Changeset 9280 for trunk/MagicSoft


Ignore:
Timestamp:
01/29/09 08:41:00 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/melectronics/MPulseShape.cc

    r9274 r9280  
    4848//
    4949MPulseShape::MPulseShape(const char* name, const char *title)
    50 : fSpline(0), fFunction("exp(-(x/2)^2/2)"), fNpx(25), fXmin(-25), fXmax(25)
     50: fSpline(0), fFunction("exp(-(x/2)^2/2)"), fNpx(25), fXmin(-8), fXmax(8)
    5151{
    5252    fName  = name  ? name  : "MPulseShape";
     
    128128    fSpline = new MSpline3(g);//, fRunHeader->GetFreqSampling()/1000.);
    129129
     130    // FIXME: Make a boundary condition e1b1,0,0 (First der, at Xmin and Xmax==0)
     131    // FIXME: Force the spline to be 0 at Xmin and Xmax?
     132
    130133    return kTRUE;
    131134}
     
    143146    Clear();
    144147    fSpline = new MSpline3(f);//, fRunHeader->GetFreqSampling()/1000.);
     148
     149    // FIXME: Make a boundary condition e1b1,0,0 (First der, at Xmin and Xmax==0)
     150    // FIXME: Force the spline to be 0 at Xmin and Xmax?
    145151
    146152    fFunction = f.GetTitle();
Note: See TracChangeset for help on using the changeset viewer.