Ignore:
Timestamp:
05/16/17 14:07:28 (7 years ago)
Author:
Malte Marquarding
Message:

shared_ptr now in std namespace

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/external-alma/components/SpectralComponents/LorentzianSpectralElement.cc

    r2980 r3121  
    4040: PCFSpectralElement(SpectralElement::LORENTZIAN, Vector<Double>(3)) {
    4141        _setFunction(
    42                 std::tr1::shared_ptr<Lorentzian1D<Double> >(
     42                std::shared_ptr<Lorentzian1D<Double> >(
    4343                        new Lorentzian1D<Double>(1)
    4444                )
     
    5757        }
    5858        _setFunction(
    59                 std::tr1::shared_ptr<Lorentzian1D<Double> >(
     59                std::shared_ptr<Lorentzian1D<Double> >(
    6060                        new Lorentzian1D<Double>(ampl, center, fwhm)
    6161                )
     
    7070        }
    7171        _setFunction(
    72                 std::tr1::shared_ptr<Lorentzian1D<Double> >(
     72                std::shared_ptr<Lorentzian1D<Double> >(
    7373                        new Lorentzian1D<Double>(param[AMP], param[CENTER], param[WIDTH])
    7474                )
Note: See TracChangeset for help on using the changeset viewer.