[Rivet] Rivet beta experience?

Riehn, Felix (IKP) felix.riehn at kit.edu
Fri Dec 9 21:46:47 GMT 2016


Hi Andy, Hi Rivet developers,

sorry for the delay. Had to deal with the aftermath of the MPI workshop.
If I recall correctly all the Rivet features for FT work nicely.
Concerning the analyses we will gladly share them.
I attached one analysis from EHS/NA22 that I would consider complete, in
the sense that .plot and .info file contain useful information.
For the others we would need some time to complete. Is there a time limit.
Also, please let me know if there are issues with style, coding
conventions etc.

Cheers, felix


On 11/30/2016 07:36 AM, Andy Buckley wrote:
> Hi again Felix and Tanguy,
>
> A long time since we've been in touch, but I was wondering if you've
> sorted out the issues you were having with nucleon beam definitions
> and if the "new" (not so new anymore!) Rivet features we added are now
> working for you?
>
> You had mentioned that you have analyses which could be usefully added
> to the "official" Rivet collection. We'd be *very* grateful to receive
> these -- please let us know if there's anything we can help with. I've
> CC'd the rest of the Rivet developers now, to give better support and
> a wider range of expertise than I can provide individually!
>
> Best wishes,
> Andy
>
>
> On 30/05/16 16:02, Riehn, Felix (IKP) wrote:
>> Hi,
>> concerning the definition of nuclear momentum: in the tool we use to
>> generate hepmc files the input of beam momenta are interpreted as
>> per-nucleon.
>> The configuration that is put into the hepmc file is per-nucleus so A
>> times the input momentum. In between there are various boosts between
>> the frames performed during one of which the wrong masses / beta is
>> used. This then leads to the deviation from zero momentum even if the
>> input was nucleon at rest. So it is not a problem in rivet..
>>
>> the definition of asqrtS on the other hand is.
>> The definition I find is:
>>
>>   double asqrtS(const FourMomentum& pa, const FourMomentum& pb)
>> {
>>
>>     const static double MNUCLEON = 939*MeV; //< nominal nucleon
>> mass
>>
>>     return sqrtS(pa, pb) / (pa.mass()/MNUCLEON +
>> pb.mass()/MNUCLEON);
>>
>>   }
>>
>> This does not work if the four momentum is pa= (A*Ea , A*vecPa)
>> I have to admit that I can't see when this ever works, since it does not
>> reduce to sqrtS when called with protons.
>>
>> sqrtS(pa, pb) / (pa.mass()/MNUCLEON *** pb.mass()/MNUCLEON)
>>
>> approximately works if mass is neglected.
>>
>> The definition that would work for the definition of nuclear momenta in
>> our case is
>>
>> sqrtS(pa / pa.mass()/MNUCLEON , pb /** pb.mass()/MNUCLEON ).
>>
>> concerning the boost routine:
>> "using the per-nucleon momenta in the boost expression rather than the
>> actual beam particle momenta? That can be done, as a complement to the
>> asqrtS() function"
>>
>> that is exactly what we need. In addition a routine going from CM to Lab
>> would be great. It could be defined through the existing cmsBoost
>> routine via
>> -cmsBoost(pa, 0. ).
>>
>> Cheers,
>> felix
>>
>>
>> On 05/27/2016 04:30 PM, Andy Buckley wrote:
>>> Hi again,
>>>
>>> Apologies for the silence -- it's exam-marking time in addition to the
>>> usual things taking up my time!
>>>
>>> First, I think you're right that we should discuss the definition of
>>> nucleus 4-momentum. The definition that I used for the boost beta
>>> factor was this, from src/Projections/Beam.cc:
>>>
>>>   Vector3 cmsBoost(const FourMomentum& pa, const FourMomentum& pb) {
>>>     Vector3 rtn = (pa.p3() + pb.p3()) / (pa.E() + pb.E());
>>>     return rtn;
>>>   }
>>>
>>> The Particle::E() calls on the denominator include the mass,
>>> obviously, so I'm assuming that the whole nucleus is given as the beam
>>> particle: is that correct? If only a nucleon is given as the beam,
>>> then we get a boost with the wrong mass factor. Is that what's going
>>> wrong for you?
>>>
>>> By the way, is my new asqrtS() function giving you the correct
>>> per-nucleon sqrts?
>>>
>>> Secondly, the precision of the boost. Agreed that beta is not a nice
>>> variable to parameterise that... but while gamma would be far more
>>> stable I'm not sure how to calculate it without encountering the same
>>> instablity as involved in beta. The boost definition above is beta =
>>> (|p|_a + |p|_b) / (E_a + E_b), so is very close to 1 -- dangerously so
>>> from a floating-point perspective. But unless I'm missing something
>>> obvious -- fully possible! -- expressing gamma from the same
>>> quantities just introduces more numerical problems: gamma =
>>> 1/sqrt(1-beta^2). Do you know of a numerically safe expansion for
>>> large boost factors, or ideally applicable everywhere? A bit of Google
>>> searching has not found anything particularly obvious for me, but this
>>> feels like it should be a standard problem with standard solution!
>>>
>>> Cheers,
>>> Andy
>>>
>>>
>>>
>>> On 18/05/16 09:18, Riehn, Felix (IKP) wrote:
>>>> Hello Andy, Hi Tanguy,
>>>>
>>>> I hacked the 'CM boost problem' by resetting the target momentum
>>>> (second
>>>> beam) in the analysis to (m_nuc, 0,0,0).
>>>> After this the boost to CM is correct and the analysis gives the same
>>>> results as before.
>>>> I guess now we have to discuss the definition of the 4momentum of a
>>>> nucleus.
>>>>
>>>> What worries me a bit is that the z component of the intial
>>>> momentum is
>>>> also wrong or at least the 'zero' is large.
>>>>
>>>> Rivet.Analysis.TPC_2006_I694016: INFO  original target 4momentum in
>>>> Lab:
>>>> (11.2671; 0, 0, 0.00769471)
>>>>
>>>> Its a bit much for precision loss.
>>>>
>>>> Here is the same for a p-p:
>>>> Rivet.Analysis.TPC_2006_I694016: INFO  original target 4momentum in
>>>> Lab:
>>>> (0.93828; 0, 0, -1.34795e-07)
>>>>
>>>> Apart from this, is there any other new feature I should test?
>>>>
>>>> Cheers,
>>>> felix
>>>>
>>>> On 05/17/2016 09:35 PM, Pierog, Tanguy (IKP) wrote:
>>>>>        Hi Andy,
>>>>>
>>>>>          My colleague Felix (CC) had some problems trying the new
>>>>> Rivet features. He is the one who has some real experience for the
>>>>> moment so probably you should see with him directly. Here is his
>>>>> email :
>>>>> "The formula in principle should be good. Only two problems:
>>>>> 1) it shows they boost with beta, which is not very stable. but ok.
>>>>> 2) It has the same problem with nuclei as sqrtS :D
>>>>> at least in the definition in CRMC, i.e. p_A = A*p_lab
>>>>> I adjusted the NA49 analysis to use the new features et voilà, it
>>>>> fails
>>>>> for p-C :)
>>>>> Curiously I still have not found the actual definition in the
>>>>> rivet-src
>>>>> so I could not try fixing it."
>>>>>
>>>>> thanks and cheers
>>>>>
>>>>> Tanguy
>>>>>
>>>>>
>>>>> ________________________________________
>>>>> De : Andy Buckley <andy.buckley at cern.ch>
>>>>> Envoyé : jeudi 12 mai 2016 16:15
>>>>> À : Pierog, Tanguy (IKP)
>>>>> Objet : Rivet beta experience?
>>>>>
>>>>> Hi Tanguy,
>>>>>
>>>>> Did you and your colleagues get a chance to try out the new Rivet 2.5
>>>>> beta yet? I hope the new features are convenient enough for what you
>>>>> need -- let me know either way.
>>>>>
>>>>> And please also let me know if I derived the right formula for the
>>>>> general beam-boost with different types of incoming particle -- it
>>>>> would
>>>>> be embarrassing to put out a full release with a dumb arithmetic
>>>>> error!
>>>>> For beams (Ep, p) and (Eq, q), I calculated that the centre-of-mass
>>>>> boost should be beta = (p+q) / (Ep + Eq), which looks convincing and
>>>>> has
>>>>> the right scaling behaviours... but it's worth checking for
>>>>> consistency
>>>>> with what you have been doing.
>>>>>
>>>>> Cheers,
>>>>> Andy
>>>>>
>>>>> -- 
>>>>> Dr Andy Buckley, Lecturer / Royal Society University Research Fellow
>>>>> Particle Physics Expt Group, University of Glasgow
>>>>
>>>
>>>
>>
>
>

-------------- next part --------------
// -*- C++ -*-
#include "Rivet/Analysis.hh"
#include "Rivet/Projections/Beam.hh"
#include "Rivet/Projections/ChargedFinalState.hh"
#include "Rivet/Event.hh"

namespace Rivet {


  class EHS_1988_I265504 : public Analysis {
  public:

    /// Constructor
    EHS_1988_I265504()
      : Analysis("EHS_1988_I265504")
    {    }


    /// @name Analysis methods
    //@{

    /// Book histograms and initialise projections before the run
    void init() {

      /// @todo Initialise and register projections here
      addProjection(ChargedFinalState(), "CFS");
      addProjection(Beam(),"Beam");

      /// @todo Book histograms here, e.g.:
      switch ( beamIds().first ) {
      case PID::PIPLUS:
	_h_cpos_xF = bookHisto1D(1, 1, 1);
	_h_cpos_eta = bookHisto1D(3, 1, 1);
	_h_cpos_pT2 = bookHisto1D(5, 1, 1);
	_h_cneg_xF = bookHisto1D(2, 1, 1);
	_h_cneg_eta = bookHisto1D(4, 1, 1);
	_h_cneg_pT2 = bookHisto1D(6, 1, 1);
	break;
	
      case PID::KPLUS:
	_h_cpos_xF = bookHisto1D(1, 1, 2);
	_h_cpos_eta = bookHisto1D(3, 1, 2);
	_h_cpos_pT2 = bookHisto1D(5, 1, 2);	
	_h_cneg_xF = bookHisto1D(2, 1, 2);
	_h_cneg_eta = bookHisto1D(4, 1, 2);
	_h_cneg_pT2 = bookHisto1D(6, 1, 2);
	break;
	
      case PID::PROTON:
	_h_cpos_xF = bookHisto1D(1, 1, 3);
	_h_cpos_eta = bookHisto1D(3, 1, 3);
	_h_cpos_pT2 = bookHisto1D(5, 1, 3);
	_h_cneg_xF = bookHisto1D(2, 1, 3);
       	_h_cneg_eta = bookHisto1D(4, 1, 3);
	_h_cneg_pT2 = bookHisto1D(6, 1, 3);	
	break;	
      }

      // calc. boost from lab to cm
      _beamboost = cmsTransform( beams() );
      MSG_INFO("boost vector: " << _beamboost );

      // transform beam into CMS frame
      Particle _beam_cm = beams().first;
      _beam_cm.transformBy(_beamboost);
      // beam momentum in CM frame defines Feynman-x
      _pz_max = _beam_cm.pz();

    }


    /// Perform the per-event analysis
    void analyze(const Event& event) {
      const double weight = event.weight();
     
      const ChargedFinalState& fs = applyProjection<ChargedFinalState>(event, "CFS");
      Particles fs_particles = fs.particles();
      for (Particle& p: fs_particles ) {
	// only interested in pi- or positively charged
	if ( !( p.charge() > 0 || p.pid() == PID::PIMINUS ) ) continue;
	// slow proton cut: reject lab momenta < 1.2GeV
	if ( p.pid() == PID::PROTON && p.p()/GeV < 1.2  ) continue;
	// transform to cm frame
	p.transformBy(_beamboost);	
	const double xF = p.pz()/_pz_max;
	
	if( p.charge() > 0 ){	
	  _h_cpos_xF->fill( xF, weight);	  
	  _h_cpos_pT2->fill( p.pT2(), weight);
	  _h_cpos_eta->fill( p.eta(), weight);
	} else {
	  if ( p.pid() == PID::PIMINUS ) {
	    _h_cneg_xF->fill( xF, weight);
	    _h_cneg_pT2->fill( p.pT2(), weight);
	    _h_cneg_eta->fill( p.eta(), weight);
	  } else {
	    continue;
	  }	  
	}
      }
    }


    /// Normalise histograms etc., after the run
    void finalize() {
      // , _h_cneg_eta,  _h_cneg_pT2
      scale( {_h_cpos_xF, _h_cpos_pT2,_h_cpos_eta, _h_cneg_xF, _h_cneg_eta, _h_cneg_pT2 } , crossSection()/millibarn/sumOfWeights() );

    }

    //@}


  private:

    // Data members like post-cuts event weight counters go here


    /// @name Histograms
    //@{
    LorentzTransform _beamboost;
    double _pz_max;
    Histo1DPtr _h_cpos_xF;
    Histo1DPtr _h_cpos_eta;
    Histo1DPtr _h_cpos_pT2;

    Histo1DPtr _h_cneg_xF;
    Histo1DPtr _h_cneg_eta;
    Histo1DPtr _h_cneg_pT2;

    //@}

  };



  // The hook for the plugin system
  DECLARE_RIVET_PLUGIN(EHS_1988_I265504);


}
-------------- next part --------------
Name: EHS_1988_I265504
Year: 1988
Summary: Charged Particle Production in $K^+ p$, $\pi^+ p$ and $pp$ Interactions at $250$GeV$/$c
Experiment: EHS
Collider: SPS
InspireID: 265504
Status: UNVALIDATED
Authors:
 - Your Name <your at email.address>
References:
 - Z.Phys.C39 (1988), 311
RunInfo:
   Inelastic interactions in CM frame, excluding slow protons in the lab. frame with p < 1.2GeV/c
NumEvents: 100000
Beams: [[p+, p+], [pi+, p+], [k+, p+]]
Energies: [[250., 0.], [250., 0.], [250., 0.]] 
#PtCuts: <Insert list of kinematic pT cuts in GeV, e.g. [0, 20]>
NeedCrossSection: True
Description:
  'Measurement of charged particle production spectra in longitudinal and transverse momentum as well as rapidity by the EHS/NA22 collaboration at the SPS. Experiment was done with a fixed hydrogen target and beams of $p$, $\pi^+$ and $K^+$ with $250\,$GeV$/$c. Measured spectra are for positively charged hadrons $C^+$ and negative charge pions $\pi^-$. $C^+$ excludes slow protons with $p<1.2\,$GeV$/$c in the laboratory. Final spectra are in center-of-mass variables: $x_{\rm F}$, $y$ and $p_{\rm T}$.'
BibKey: Adamus:1988xc
BibTeX: '@article{Adamus:1988xc,
      author         = "Adamus, M. and others",
      title          = "{Charged Particle Production in $K^+ p$, $\pi^+ p$ and $p
                        p$ Interactions at 250-{GeV}/$c$}",
      collaboration  = "EHS/NA22",
      journal        = "Z. Phys.",
      volume         = "C39",
      year           = "1988",
      pages          = "311-329",
      reportNumber   = "IFVE-88-121",
      SLACcitation   = "%%CITATION = ZEPYA,C39,311;%%"
}'
ToDo:
 - Implement the analysis, test it, remove this ToDo, and mark as VALIDATED :-)

-------------- next part --------------
# BEGIN PLOT /EHS_1988_I265504/d01-x01-y01
Title=NA22 $\pi^{+}+\mathrm{p} \, \to \, \mathrm{C}^{+}$ with $p_{\rm{Lab}}=250$ GeVc$^{-1}$
XLabel=Longitudinal momentum fraction $x_{\rm{F}}$
YLabel=Cross section $\mathrm{d}\sigma / \mathrm{d}x_{\rm{F}}$ (mb)
LegendXPos=0.4
LegendYPos=0.4
# END PLOT

# BEGIN PLOT /EHS_1988_I265504/d01-x01-y02
Title=NA22 $\mathrm{K}^{+}+\mathrm{p} \, \to \, \mathrm{C}^{+}$ with $p_{\rm{Lab}}=250$ GeVc$^{-1}$
XLabel=Longitudinal momentum fraction $x_{\rm{F}}$
YLabel=Cross section $\mathrm{d}\sigma / \mathrm{d}x_{\rm{F}}$ (mb)
LegendXPos=0.4
LegendYPos=0.4
# END PLOT

# BEGIN PLOT /EHS_1988_I265504/d01-x01-y03
Title=NA22 $\mathrm{p}+\mathrm{p} \, \to \, \mathrm{C}^{+}$ with $p_{\rm{Lab}}=250$ GeVc$^{-1}$
XLabel=Longitudinal momentum fraction $x_{\rm{F}}$
YLabel=Cross section $\mathrm{d}\sigma / \mathrm{d}x_{\rm{F}}$ (mb)
LegendXPos=0.4
LegendYPos=0.4
# END PLOT

# BEGIN PLOT /EHS_1988_I265504/d02-x01-y01
Title=NA22 $\pi^{+}+\mathrm{p} \, \to \, \pi^{-}$ with $p_{\rm{Lab}}=250$ GeVc$^{-1}$
XLabel=Longitudinal momentum fraction $x_{\rm{F}}$
YLabel=Cross section $\mathrm{d}\sigma / \mathrm{d}x_{\rm{F}}$ (mb)
LegendXPos=0.4
LegendYPos=0.4
# END PLOT

# BEGIN PLOT /EHS_1988_I265504/d02-x01-y02
Title=NA22 $\mathrm{K}^{+}+\mathrm{p} \, \to \, \pi^{-}$ with $p_{\rm{Lab}}=250$ GeVc$^{-1}$
XLabel=Longitudinal momentum fraction $x_{\rm{F}}$
YLabel=Cross section $\mathrm{d}\sigma / \mathrm{d}x_{\rm{F}}$ (mb)
LegendXPos=0.4
LegendYPos=0.4
# END PLOT

# BEGIN PLOT /EHS_1988_I265504/d02-x01-y03
Title=NA22 $\mathrm{p}+\mathrm{p} \, \to \, \pi^{-}$ with $p_{\rm{Lab}}=250$ GeVc$^{-1}$
XLabel=Longitudinal momentum fraction $x_{\rm{F}}$
YLabel=Cross section $\mathrm{d}\sigma / \mathrm{d}x_{\rm{F}}$ (mb)
LegendXPos=0.4
LegendYPos=0.4
# END PLOT

# BEGIN PLOT /EHS_1988_I265504/d03-x01-y01
Title=NA22 $\pi^{+}+\mathrm{p} \, \to \, \mathrm{C}^{+}$ with $p_{\rm{Lab}}=250$ GeVc$^{-1}$
XLabel=Pseudorapidity $\eta$
YLabel=Cross section $\mathrm{d}\sigma / \mathrm{d}\eta$ (mb)
LegendXPos=0.4
LegendYPos=0.4
# END PLOT

# BEGIN PLOT /EHS_1988_I265504/d03-x01-y02
Title=NA22 $\mathrm{K}^{+}+\mathrm{p} \, \to \, \mathrm{C}^{+}$ with $p_{\rm{Lab}}=250$ GeVc$^{-1}$
XLabel=Pseudorapidity $\eta$
YLabel=Cross section $\mathrm{d}\sigma / \mathrm{d}\eta$ (mb)
LegendXPos=0.4
LegendYPos=0.4
# END PLOT

# BEGIN PLOT /EHS_1988_I265504/d03-x01-y03
Title=NA22 $\mathrm{p}+\mathrm{p} \, \to \, \mathrm{C}^{+}$ with $p_{\rm{Lab}}=250$ GeVc$^{-1}$
XLabel=Pseudorapidity $\eta$
YLabel=Cross section $\mathrm{d}\sigma / \mathrm{d}\eta$ (mb)
LegendXPos=0.4
LegendYPos=0.4
# END PLOT

# BEGIN PLOT /EHS_1988_I265504/d04-x01-y01
Title=NA22 $\pi^{+}+\mathrm{p} \, \to \, \pi^{-}$ with $p_{\rm{Lab}}=250$ GeVc$^{-1}$
XLabel=Pseudorapidity $\eta$
YLabel=Cross section $\mathrm{d}\sigma / \mathrm{d}\eta$ (mb)
LegendXPos=0.4
LegendYPos=0.4
# END PLOT

# BEGIN PLOT /EHS_1988_I265504/d04-x01-y02
Title=NA22 $\mathrm{K}^{+}+\mathrm{p} \, \to \, \pi^{-}$ with $p_{\rm{Lab}}=250$ GeVc$^{-1}$
XLabel=Pseudorapidity $\eta$
YLabel=Cross section $\mathrm{d}\sigma / \mathrm{d}\eta$ (mb)
LegendXPos=0.4
LegendYPos=0.4
# END PLOT

# BEGIN PLOT /EHS_1988_I265504/d04-x01-y03
Title=NA22 $\mathrm{p}+\mathrm{p} \, \to \, \pi^{-}$ with $p_{\rm{Lab}}=250$ GeVc$^{-1}$
XLabel=Pseudorapidity $\eta$
YLabel=Cross section $\mathrm{d}\sigma / \mathrm{d}\eta$ (mb)
LegendXPos=0.4
LegendYPos=0.4
# END PLOT

# BEGIN PLOT /EHS_1988_I265504/d05-x01-y01
Title=NA22 $\pi^{+}+\mathrm{p} \, \to \, \mathrm{C}^{+}$ with $p_{\rm{Lab}}=250$ GeVc$^{-1}$
XLabel=Transverse momentum $p_{\rm{T}}^2$ (GeV$^{2}$c$^{-2}$))
YLabel=Cross section $\mathrm{d}\sigma / \mathrm{d}p^{2}_{\rm{T}}$ (mb)
# END PLOT

# BEGIN PLOT /EHS_1988_I265504/d05-x01-y02
Title=NA22 $\mathrm{K}^{+}+\mathrm{p} \, \to \, \mathrm{C}^{+}$ with $p_{\rm{Lab}}=250$ GeVc$^{-1}$
XLabel=Transverse momentum $p_{\rm{T}}^2$ (GeV$^{2}$c$^{-2}$))
YLabel=Cross section $\mathrm{d}\sigma / \mathrm{d}p^{2}_{\rm{T}}$ (mb)
# END PLOT

# BEGIN PLOT /EHS_1988_I265504/d05-x01-y03
Title=NA22 $\mathrm{p}+\mathrm{p} \, \to \, \mathrm{C}^{+}$ with $p_{\rm{Lab}}=250$ GeVc$^{-1}$
XLabel=Transverse momentum $p_{\rm{T}}^2$ (GeV$^{2}$c$^{-2}$))
YLabel=Cross section $\mathrm{d}\sigma / \mathrm{d}p^{2}_{\rm{T}}$ (mb)
# END PLOT

# BEGIN PLOT /EHS_1988_I265504/d06-x01-y01
Title=NA22 $\pi^{+}+\mathrm{p} \, \to \, \pi^{-}$ with $p_{\rm{Lab}}=250$ GeVc$^{-1}$
XLabel=Transverse momentum $p_{\rm{T}}^2$ (GeV$^{2}$c$^{-2}$)
YLabel=Cross section $\mathrm{d}\sigma / \mathrm{d}p^{2}_{\rm{T}}$ (mb (GeV$c$^{-1}$)$^{-2}$)
# END PLOT

# BEGIN PLOT /EHS_1988_I265504/d06-x01-y02
Title=NA22 $\mathrm{K}^{+}+\mathrm{p} \, \to \, \pi^{-}$ with $p_{\rm{Lab}}=250$ GeVc$^{-1}$
XLabel=Transverse momentum $p_{\rm{T}}^2$ (GeV$^{2}$c$^{-2}$)
YLabel=Cross section $\mathrm{d}\sigma / \mathrm{d}p^{2}_{\rm{T}}$ (mb (GeV$c$^{-1}$)$^{-2}$)
# END PLOT

# BEGIN PLOT /EHS_1988_I265504/d06-x01-y03
Title=NA22 $\mathrm{p}+\mathrm{p} \, \to \, \pi^{-}$ with $p_{\rm{Lab}}=250$ GeVc$^{-1}$
XLabel=Transverse momentum $p_{\rm{T}}^2$ (GeV$^{2}$c$^{-2}$)
YLabel=Cross section $\mathrm{d}\sigma / \mathrm{d}p^{2}_{\rm{T}}$ (mb (GeV$c$^{-1}$)$^{-2}$)
# END PLOT

# ... add more histograms as you need them ...
-------------- next part --------------
# BEGIN YODA_SCATTER2D /REF/EHS_1988_I265504/d01-x01-y01
Path=/REF/EHS_1988_I265504/d01-x01-y01
Type=Scatter2D
# xval   xerr-   xerr+   yval   yerr-   yerr+
-0.78	0.020000000000000018	0.020000000000000018			0.29	0.08	0.08
-0.74	0.020000000000000018	0.020000000000000018			0.21	0.05	0.05
-0.7	0.020000000000000018	0.019999999999999907			0.71	0.14	0.14
-0.66	0.020000000000000018	0.020000000000000018			0.9	0.2	0.2
-0.62	0.020000000000000018	0.020000000000000018			1.6	0.2	0.2
-0.5800000000000001	0.019999999999999907	0.020000000000000018			2.7	0.3	0.3
-0.54	0.020000000000000018	0.020000000000000018			3.1	0.4	0.4
-0.5	0.020000000000000018	0.020000000000000018			4.3	0.5	0.5
-0.45999999999999996	0.020000000000000018	0.019999999999999962			5.4	0.6	0.6
-0.42000000000000004	0.019999999999999962	0.020000000000000018			7.3	0.6	0.6
-0.38	0.020000000000000018	0.020000000000000018			9.9	0.7	0.7
-0.33999999999999997	0.020000000000000018	0.019999999999999962			13.4	0.8	0.8
-0.30000000000000004	0.019999999999999962	0.020000000000000018			19.1	1.0	1.0
-0.26	0.020000000000000018	0.020000000000000018			27.2	1.0	1.0
-0.22	0.01999999999999999	0.01999999999999999			37.7	1.0	1.0
-0.18	0.020000000000000018	0.01999999999999999			51.8	1.2	1.2
-0.14	0.01999999999999999	0.020000000000000018			80.1	1.4	1.4
-0.1	0.01999999999999999	0.020000000000000004			125.5	1.6	1.6
-0.06	0.020000000000000004	0.019999999999999997			226.0	2.0	2.0
-0.02	0.02	0.02			495.0	3.0	3.0
0.02	0.02	0.02			538.0	3.0	3.0
0.06	0.019999999999999997	0.020000000000000004			258.0	2.0	2.0
0.1	0.020000000000000004	0.01999999999999999			149.2	1.7	1.7
0.14	0.020000000000000018	0.01999999999999999			97.4	1.3	1.3
0.18	0.01999999999999999	0.020000000000000018			68.2	1.0	1.0
0.22	0.01999999999999999	0.01999999999999999			51.6	0.9	0.9
0.26	0.020000000000000018	0.020000000000000018			39.3	0.8	0.8
0.30000000000000004	0.020000000000000018	0.019999999999999962			31.2	0.7	0.7
0.33999999999999997	0.019999999999999962	0.020000000000000018			26.2	0.7	0.7
0.38	0.020000000000000018	0.020000000000000018			20.0	0.6	0.6
0.42000000000000004	0.020000000000000018	0.019999999999999962			16.4	0.6	0.6
0.45999999999999996	0.019999999999999962	0.020000000000000018			14.7	0.6	0.6
0.5	0.020000000000000018	0.020000000000000018			11.8	0.5	0.5
0.54	0.020000000000000018	0.020000000000000018			11.4	0.5	0.5
0.5800000000000001	0.020000000000000018	0.019999999999999907			9.5	0.5	0.5
0.62	0.020000000000000018	0.020000000000000018			8.7	0.4	0.4
0.66	0.020000000000000018	0.020000000000000018			7.2	0.4	0.4
0.7	0.019999999999999907	0.020000000000000018			7.1	0.5	0.5
0.74	0.020000000000000018	0.020000000000000018			6.3	0.5	0.5
0.78	0.020000000000000018	0.020000000000000018			6.5	0.6	0.6
0.8200000000000001	0.020000000000000018	0.019999999999999907			6.7	0.6	0.6
0.86	0.020000000000000018	0.020000000000000018			7.0	0.7	0.7
0.9	0.020000000000000018	0.020000000000000018			8.7	1.0	1.0
0.94	0.019999999999999907	0.020000000000000018			11.2	1.5	1.5
0.98	0.020000000000000018	0.020000000000000018			27.7	2.0	2.0
# END YODA_SCATTER2D 


# BEGIN YODA_SCATTER2D /REF/EHS_1988_I265504/d01-x01-y02
Path=/REF/EHS_1988_I265504/d01-x01-y02
Type=Scatter2D
# xval   xerr-   xerr+   yval   yerr-   yerr+
-0.78	0.020000000000000018	0.020000000000000018			0.18	0.04	0.04
-0.74	0.020000000000000018	0.020000000000000018			0.3	0.1	0.1
-0.7	0.020000000000000018	0.019999999999999907			0.7	0.2	0.2
-0.66	0.020000000000000018	0.020000000000000018			0.6	0.2	0.2
-0.62	0.020000000000000018	0.020000000000000018			1.1	0.2	0.2
-0.5800000000000001	0.019999999999999907	0.020000000000000018			1.7	0.2	0.2
-0.54	0.020000000000000018	0.020000000000000018			2.3	0.2	0.2
-0.5	0.020000000000000018	0.020000000000000018			3.2	0.2	0.2
-0.45999999999999996	0.020000000000000018	0.019999999999999962			4.6	0.3	0.3
-0.42000000000000004	0.019999999999999962	0.020000000000000018			5.7	0.3	0.3
-0.38	0.020000000000000018	0.020000000000000018			8.4	0.4	0.4
-0.33999999999999997	0.020000000000000018	0.019999999999999962			10.7	0.4	0.4
-0.30000000000000004	0.019999999999999962	0.020000000000000018			15.6	0.5	0.5
-0.26	0.020000000000000018	0.020000000000000018			21.5	0.6	0.6
-0.22	0.01999999999999999	0.01999999999999999			29.7	0.6	0.6
-0.18	0.020000000000000018	0.01999999999999999			41.9	0.7	0.7
-0.14	0.01999999999999999	0.020000000000000018			65.3	0.9	0.9
-0.1	0.01999999999999999	0.020000000000000004			102.9	1.2	1.2
-0.06	0.020000000000000004	0.019999999999999997			193.0	2.0	2.0
-0.02	0.02	0.02			424.0	2.0	2.0
0.02	0.02	0.02			442.0	2.0	2.0
0.06	0.019999999999999997	0.020000000000000004			211.0	2.0	2.0
0.1	0.020000000000000004	0.01999999999999999			123.7	1.4	1.4
0.14	0.020000000000000018	0.01999999999999999			81.3	1.1	1.1
0.18	0.01999999999999999	0.020000000000000018			58.6	0.9	0.9
0.22	0.01999999999999999	0.01999999999999999			44.6	0.8	0.8
0.26	0.020000000000000018	0.020000000000000018			35.2	0.7	0.7
0.30000000000000004	0.020000000000000018	0.019999999999999962			27.2	0.6	0.6
0.33999999999999997	0.019999999999999962	0.020000000000000018			22.4	0.6	0.6
0.38	0.020000000000000018	0.020000000000000018			18.3	0.5	0.5
0.42000000000000004	0.020000000000000018	0.019999999999999962			14.6	0.4	0.4
0.45999999999999996	0.019999999999999962	0.020000000000000018			12.2	0.4	0.4
0.5	0.020000000000000018	0.020000000000000018			10.0	0.4	0.4
0.54	0.020000000000000018	0.020000000000000018			8.5	0.4	0.4
0.5800000000000001	0.020000000000000018	0.019999999999999907			7.1	0.4	0.4
0.62	0.020000000000000018	0.020000000000000018			6.1	0.4	0.4
0.66	0.020000000000000018	0.020000000000000018			5.9	0.4	0.4
0.7	0.019999999999999907	0.020000000000000018			5.2	0.5	0.5
0.74	0.020000000000000018	0.020000000000000018			4.7	0.5	0.5
0.78	0.020000000000000018	0.020000000000000018			4.9	0.5	0.5
0.8200000000000001	0.020000000000000018	0.019999999999999907			4.8	0.6	0.6
0.86	0.020000000000000018	0.020000000000000018			5.4	0.6	0.6
0.9	0.020000000000000018	0.020000000000000018			6.2	1.0	1.0
0.94	0.019999999999999907	0.020000000000000018			10.9	1.4	1.4
0.98	0.020000000000000018	0.020000000000000018			24.1	1.8	1.8
# END YODA_SCATTER2D 


# BEGIN YODA_SCATTER2D /REF/EHS_1988_I265504/d01-x01-y03
Path=/REF/EHS_1988_I265504/d01-x01-y03
Type=Scatter2D
# xval   xerr-   xerr+   yval   yerr-   yerr+
-0.78	0.020000000000000018	0.020000000000000018			0.15	0.08	0.08
-0.74	0.020000000000000018	0.020000000000000018			0.9	0.03	0.03
-0.7	0.020000000000000018	0.019999999999999907			1.8	0.4	0.4
-0.66	0.020000000000000018	0.020000000000000018			1.8	0.4	0.4
-0.62	0.020000000000000018	0.020000000000000018			1.9	0.4	0.4
-0.5800000000000001	0.019999999999999907	0.020000000000000018			3.3	0.5	0.5
-0.54	0.020000000000000018	0.020000000000000018			3.5	0.5	0.5
-0.5	0.020000000000000018	0.020000000000000018			7.2	0.7	0.7
-0.45999999999999996	0.020000000000000018	0.019999999999999962			7.9	0.7	0.7
-0.42000000000000004	0.019999999999999962	0.020000000000000018			10.7	0.9	0.9
-0.38	0.020000000000000018	0.020000000000000018			14.5	1.0	1.0
-0.33999999999999997	0.020000000000000018	0.019999999999999962			22.2	1.3	1.3
-0.30000000000000004	0.019999999999999962	0.020000000000000018			23.8	1.3	1.3
-0.26	0.020000000000000018	0.020000000000000018			38.6	1.6	1.6
-0.22	0.01999999999999999	0.01999999999999999			56.0	2.0	2.0
-0.18	0.020000000000000018	0.01999999999999999			74.0	2.0	2.0
-0.14	0.01999999999999999	0.020000000000000018			115.0	3.0	3.0
-0.1	0.01999999999999999	0.020000000000000004			191.0	4.0	4.0
-0.06	0.020000000000000004	0.019999999999999997			341.0	5.0	5.0
-0.02	0.02	0.02			772.0	7.0	7.0
0.02	0.02	0.02			780.0	7.0	7.0
0.06	0.019999999999999997	0.020000000000000004			346.0	5.0	5.0
0.1	0.020000000000000004	0.01999999999999999			198.0	4.0	4.0
0.14	0.020000000000000018	0.01999999999999999			122.0	3.0	3.0
0.18	0.01999999999999999	0.020000000000000018			82.0	3.0	3.0
0.22	0.01999999999999999	0.01999999999999999			67.0	2.0	2.0
0.26	0.020000000000000018	0.020000000000000018			56.0	2.0	2.0
0.30000000000000004	0.020000000000000018	0.019999999999999962			37.8	1.5	1.5
0.33999999999999997	0.019999999999999962	0.020000000000000018			37.5	1.6	1.6
0.38	0.020000000000000018	0.020000000000000018			36.2	1.6	1.6
0.42000000000000004	0.020000000000000018	0.019999999999999962			30.8	1.4	1.4
0.45999999999999996	0.019999999999999962	0.020000000000000018			29.0	1.4	1.4
0.5	0.020000000000000018	0.020000000000000018			26.4	1.4	1.4
0.54	0.020000000000000018	0.020000000000000018			23.2	1.3	1.3
0.5800000000000001	0.020000000000000018	0.019999999999999907			20.1	1.2	1.2
0.62	0.020000000000000018	0.020000000000000018			17.4	1.2	1.2
0.66	0.020000000000000018	0.020000000000000018			14.4	1.1	1.1
0.7	0.019999999999999907	0.020000000000000018			16.8	1.2	1.2
0.74	0.020000000000000018	0.020000000000000018			18.9	1.4	1.4
0.78	0.020000000000000018	0.020000000000000018			15.7	1.3	1.3
0.8200000000000001	0.020000000000000018	0.019999999999999907			15.5	1.3	1.3
0.86	0.020000000000000018	0.020000000000000018			17.2	1.5	1.5
0.9	0.020000000000000018	0.020000000000000018			19.6	1.9	1.9
0.94	0.019999999999999907	0.020000000000000018			24.0	3.0	3.0
0.98	0.020000000000000018	0.020000000000000018			46.0	3.0	3.0
# END YODA_SCATTER2D 


# BEGIN YODA_SCATTER2D /REF/EHS_1988_I265504/d02-x01-y01
Path=/REF/EHS_1988_I265504/d02-x01-y01
Type=Scatter2D
# xval   xerr-   xerr+   yval   yerr-   yerr+
-0.78	0.020000000000000018	0.020000000000000018			0.022	0.014	0.014
-0.74	0.020000000000000018	0.020000000000000018			0.1	0.04	0.04
-0.7	0.020000000000000018	0.019999999999999907			0.09	0.04	0.04
-0.66	0.020000000000000018	0.020000000000000018			0.28	0.05	0.05
-0.62	0.020000000000000018	0.020000000000000018			0.25	0.05	0.05
-0.5800000000000001	0.019999999999999907	0.020000000000000018			0.53	0.07	0.07
-0.54	0.020000000000000018	0.020000000000000018			0.58	0.08	0.08
-0.5	0.020000000000000018	0.020000000000000018			1.22	0.12	0.12
-0.45999999999999996	0.020000000000000018	0.019999999999999962			1.26	0.12	0.12
-0.42000000000000004	0.019999999999999962	0.020000000000000018			2.36	0.19	0.19
-0.38	0.020000000000000018	0.020000000000000018			2.9	0.2	0.2
-0.33999999999999997	0.020000000000000018	0.019999999999999962			4.7	0.3	0.3
-0.30000000000000004	0.019999999999999962	0.020000000000000018			6.5	0.3	0.3
-0.26	0.020000000000000018	0.020000000000000018			10.7	0.4	0.4
-0.22	0.01999999999999999	0.01999999999999999			15.7	0.5	0.5
-0.18	0.020000000000000018	0.01999999999999999			23.1	0.6	0.6
-0.14	0.01999999999999999	0.020000000000000018			40.0	0.8	0.8
-0.1	0.01999999999999999	0.020000000000000004			70.9	1.2	1.2
-0.06	0.020000000000000004	0.019999999999999997			147.7	1.7	1.7
-0.02	0.02	0.02			391.0	2.9	2.9
0.02	0.02	0.02			422.9	3.0	3.0
0.06	0.019999999999999997	0.020000000000000004			189.3	1.9	1.9
0.1	0.020000000000000004	0.01999999999999999			102.8	1.4	1.4
0.14	0.020000000000000018	0.01999999999999999			62.7	1.0	1.0
0.18	0.01999999999999999	0.020000000000000018			42.5	0.9	0.9
0.22	0.01999999999999999	0.01999999999999999			29.1	0.7	0.7
0.26	0.020000000000000018	0.020000000000000018			20.3	0.6	0.6
0.30000000000000004	0.020000000000000018	0.019999999999999962			15.1	0.5	0.5
0.33999999999999997	0.019999999999999962	0.020000000000000018			10.2	0.4	0.4
0.38	0.020000000000000018	0.020000000000000018			8.0	0.4	0.4
0.42000000000000004	0.020000000000000018	0.019999999999999962			5.6	0.3	0.3
0.45999999999999996	0.019999999999999962	0.020000000000000018			4.8	0.3	0.3
0.5	0.020000000000000018	0.020000000000000018			4.0	0.3	0.3
0.54	0.020000000000000018	0.020000000000000018			3.4	0.2	0.2
0.5800000000000001	0.020000000000000018	0.019999999999999907			2.6	0.2	0.2
0.62	0.020000000000000018	0.020000000000000018			1.76	0.17	0.17
0.66	0.020000000000000018	0.020000000000000018			1.7	0.17	0.17
0.7	0.019999999999999907	0.020000000000000018			1.18	0.16	0.16
0.74	0.020000000000000018	0.020000000000000018			1.04	0.16	0.16
0.78	0.020000000000000018	0.020000000000000018			0.49	0.12	0.12
0.8200000000000001	0.020000000000000018	0.019999999999999907			0.6	0.15	0.15
0.86	0.020000000000000018	0.020000000000000018			0.44	0.12	0.12
0.9	0.020000000000000018	0.020000000000000018			0.23	0.1	0.1
0.94	0.019999999999999907	0.020000000000000018			0.06	0.04	0.04
# END YODA_SCATTER2D 


# BEGIN YODA_SCATTER2D /REF/EHS_1988_I265504/d02-x01-y02
Path=/REF/EHS_1988_I265504/d02-x01-y02
Type=Scatter2D
# xval   xerr-   xerr+   yval   yerr-   yerr+
-0.78	0.020000000000000018	0.020000000000000018			0.05	0.02	0.02
-0.74	0.020000000000000018	0.020000000000000018			0.07	0.02	0.02
-0.7	0.020000000000000018	0.019999999999999907			0.06	0.02	0.02
-0.66	0.020000000000000018	0.020000000000000018			0.16	0.04	0.04
-0.62	0.020000000000000018	0.020000000000000018			0.23	0.04	0.04
-0.5800000000000001	0.019999999999999907	0.020000000000000018			0.26	0.04	0.04
-0.54	0.020000000000000018	0.020000000000000018			0.63	0.08	0.08
-0.5	0.020000000000000018	0.020000000000000018			0.79	0.08	0.08
-0.45999999999999996	0.020000000000000018	0.019999999999999962			1.14	0.1	0.1
-0.42000000000000004	0.019999999999999962	0.020000000000000018			1.71	0.14	0.14
-0.38	0.020000000000000018	0.020000000000000018			2.58	0.19	0.19
-0.33999999999999997	0.020000000000000018	0.019999999999999962			3.5	0.2	0.2
-0.30000000000000004	0.019999999999999962	0.020000000000000018			5.2	0.3	0.3
-0.26	0.020000000000000018	0.020000000000000018			7.5	0.3	0.3
-0.22	0.01999999999999999	0.01999999999999999			12.4	0.4	0.4
-0.18	0.020000000000000018	0.01999999999999999			18.8	0.5	0.5
-0.14	0.01999999999999999	0.020000000000000018			34.1	0.7	0.7
-0.1	0.01999999999999999	0.020000000000000004			61.0	1.0	1.0
-0.06	0.020000000000000004	0.019999999999999997			129.6	1.5	1.5
-0.02	0.02	0.02			331.8	2.7	2.7
0.02	0.02	0.02			363.7	2.6	2.6
0.06	0.019999999999999997	0.020000000000000004			160.1	1.6	1.6
0.1	0.020000000000000004	0.01999999999999999			82.4	1.2	1.2
0.14	0.020000000000000018	0.01999999999999999			50.2	0.9	0.9
0.18	0.01999999999999999	0.020000000000000018			33.2	0.7	0.7
0.22	0.01999999999999999	0.01999999999999999			21.3	0.6	0.6
0.26	0.020000000000000018	0.020000000000000018			14.9	0.4	0.4
0.30000000000000004	0.020000000000000018	0.019999999999999962			10.1	0.4	0.4
0.33999999999999997	0.019999999999999962	0.020000000000000018			7.3	0.3	0.3
0.38	0.020000000000000018	0.020000000000000018			5.4	0.2	0.2
0.42000000000000004	0.020000000000000018	0.019999999999999962			4.0	0.2	0.2
0.45999999999999996	0.019999999999999962	0.020000000000000018			3.0	0.2	0.2
0.5	0.020000000000000018	0.020000000000000018			2.1	0.2	0.2
0.54	0.020000000000000018	0.020000000000000018			1.67	0.16	0.16
0.5800000000000001	0.020000000000000018	0.019999999999999907			1.0	0.12	0.12
0.62	0.020000000000000018	0.020000000000000018			0.6	0.09	0.09
0.66	0.020000000000000018	0.020000000000000018			0.6	0.09	0.09
0.7	0.019999999999999907	0.020000000000000018			0.43	0.07	0.07
0.74	0.020000000000000018	0.020000000000000018			0.25	0.06	0.06
0.78	0.020000000000000018	0.020000000000000018			0.15	0.05	0.05
0.8200000000000001	0.020000000000000018	0.019999999999999907			0.16	0.06	0.06
0.86	0.020000000000000018	0.020000000000000018			0.06	0.03	0.03
0.9	0.020000000000000018	0.020000000000000018			0.03	0.02	0.02
							
# END YODA_SCATTER2D 


# BEGIN YODA_SCATTER2D /REF/EHS_1988_I265504/d02-x01-y03
Path=/REF/EHS_1988_I265504/d02-x01-y03
Type=Scatter2D
# xval   xerr-   xerr+   yval   yerr-   yerr+
							
							
-0.7	0.020000000000000018	0.019999999999999907			0.09	0.09	0.09
							
-0.62	0.020000000000000018	0.020000000000000018			0.21	0.21	0.21
-0.5800000000000001	0.019999999999999907	0.020000000000000018			1.2	0.3	0.3
-0.54	0.020000000000000018	0.020000000000000018			1.2	0.3	0.3
-0.5	0.020000000000000018	0.020000000000000018			1.7	0.3	0.3
-0.45999999999999996	0.020000000000000018	0.019999999999999962			2.9	0.4	0.4
-0.42000000000000004	0.019999999999999962	0.020000000000000018			3.1	0.4	0.4
-0.38	0.020000000000000018	0.020000000000000018			4.4	0.5	0.5
-0.33999999999999997	0.020000000000000018	0.019999999999999962			5.6	0.6	0.6
-0.30000000000000004	0.019999999999999962	0.020000000000000018			8.8	0.7	0.7
-0.26	0.020000000000000018	0.020000000000000018			15.3	1.0	1.0
-0.22	0.01999999999999999	0.01999999999999999			22.8	1.2	1.2
-0.18	0.020000000000000018	0.01999999999999999			35.0	1.5	1.5
-0.14	0.01999999999999999	0.020000000000000018			64.0	2.0	2.0
-0.1	0.01999999999999999	0.020000000000000004			114.0	3.0	3.0
-0.06	0.020000000000000004	0.019999999999999997			227.0	4.0	4.0
-0.02	0.02	0.02			634.0	7.0	7.0
0.02	0.02	0.02			648.0	7.0	7.0
0.06	0.019999999999999997	0.020000000000000004			259.0	4.0	4.0
0.1	0.020000000000000004	0.01999999999999999			126.0	3.0	3.0
0.14	0.020000000000000018	0.01999999999999999			74.0	2.0	2.0
0.18	0.01999999999999999	0.020000000000000018			44.5	1.6	1.6
0.22	0.01999999999999999	0.01999999999999999			29.1	1.3	1.3
0.26	0.020000000000000018	0.020000000000000018			16.8	0.9	0.9
0.30000000000000004	0.020000000000000018	0.019999999999999962			11.2	0.8	0.8
0.33999999999999997	0.019999999999999962	0.020000000000000018			6.6	0.6	0.6
0.38	0.020000000000000018	0.020000000000000018			5.6	0.5	0.5
0.42000000000000004	0.020000000000000018	0.019999999999999962			5.9	0.6	0.6
0.45999999999999996	0.019999999999999962	0.020000000000000018			1.5	0.3	0.3
0.5	0.020000000000000018	0.020000000000000018			1.3	0.3	0.3
0.54	0.020000000000000018	0.020000000000000018			1.8	0.3	0.3
0.5800000000000001	0.020000000000000018	0.019999999999999907			0.32	0.12	0.12
0.62	0.020000000000000018	0.020000000000000018			0.32	0.12	0.12
0.66	0.020000000000000018	0.020000000000000018			0.47	0.15	0.15
0.7	0.019999999999999907	0.020000000000000018			0.31	0.12	0.12
							
							
							
							
							
							
# END YODA_SCATTER2D 


# BEGIN YODA_SCATTER2D /REF/EHS_1988_I265504/d03-x01-y01
Path=/REF/EHS_1988_I265504/d03-x01-y01
Type=Scatter2D
# xval   xerr-   xerr+   yval   yerr-   yerr+
-5.8	0.20000000000000018	0.20000000000000018			0.03	0.007	0.007
-5.4	0.1999999999999993	0.20000000000000018			0.047	0.008	0.008
-5.0	0.20000000000000018	0.20000000000000018			0.108	0.013	0.013
-4.6	0.20000000000000018	0.1999999999999993			0.298	0.021	0.021
-4.2	0.20000000000000018	0.20000000000000018			0.64	0.03	0.03
-3.8	0.20000000000000018	0.19999999999999973			1.18	0.04	0.04
-3.4000000000000004	0.19999999999999973	0.20000000000000018			2.01	0.06	0.06
-3.0	0.20000000000000018	0.20000000000000018			4.52	0.09	0.09
-2.5999999999999996	0.20000000000000018	0.19999999999999973			7.89	0.15	0.15
-2.2	0.19999999999999973	0.20000000000000018			12.1	0.26	0.26
-1.9	0.10000000000000009	0.09999999999999987			15.21	0.35	0.35
-1.7000000000000002	0.09999999999999987	0.10000000000000009			16.2	0.36	0.36
-1.5	0.10000000000000009	0.10000000000000009			16.82	0.36	0.36
-1.2999999999999998	0.10000000000000009	0.09999999999999987			17.54	0.36	0.36
-1.1	0.09999999999999987	0.10000000000000009			17.55	0.35	0.35
-0.9	0.09999999999999998	0.09999999999999998			16.53	0.35	0.35
-0.7	0.10000000000000009	0.09999999999999998			17.17	0.35	0.35
-0.5	0.09999999999999998	0.09999999999999998			16.64	0.35	0.35
-0.30000000000000004	0.09999999999999998	0.10000000000000003			16.24	0.35	0.35
-0.1	0.1	0.1			16.44	0.25	0.25
0.1	0.1	0.1			17.6	0.27	0.27
0.30000000000000004	0.10000000000000003	0.09999999999999998			17.44	0.26	0.26
0.5	0.09999999999999998	0.09999999999999998			17.47	0.26	0.26
0.7	0.09999999999999998	0.10000000000000009			18.25	0.27	0.27
0.9	0.09999999999999998	0.09999999999999998			18.24	0.26	0.26
1.1	0.10000000000000009	0.09999999999999987			18.32	0.27	0.27
1.2999999999999998	0.09999999999999987	0.10000000000000009			19.0	0.27	0.27
1.5	0.10000000000000009	0.10000000000000009			18.64	0.26	0.26
1.7000000000000002	0.10000000000000009	0.09999999999999987			18.7	0.27	0.27
1.9	0.09999999999999987	0.10000000000000009			17.72	0.26	0.26
2.2	0.20000000000000018	0.19999999999999973			15.83	0.17	0.17
2.5999999999999996	0.19999999999999973	0.20000000000000018			12.08	0.15	0.15
3.0	0.20000000000000018	0.20000000000000018			8.51	0.12	0.12
3.4000000000000004	0.20000000000000018	0.19999999999999973			6.17	0.1	0.1
3.8	0.19999999999999973	0.20000000000000018			4.43	0.08	0.08
4.2	0.20000000000000018	0.20000000000000018			2.86	0.07	0.07
4.6	0.1999999999999993	0.20000000000000018			1.39	0.05	0.05
5.0	0.20000000000000018	0.20000000000000018			0.64	0.04	0.04
5.4	0.20000000000000018	0.1999999999999993			0.287	0.022	0.022
5.8	0.20000000000000018	0.20000000000000018			0.147	0.015	0.015
# END YODA_SCATTER2D 


# BEGIN YODA_SCATTER2D /REF/EHS_1988_I265504/d03-x01-y02
Path=/REF/EHS_1988_I265504/d03-x01-y02
Type=Scatter2D
# xval   xerr-   xerr+   yval   yerr-   yerr+
-5.8	0.20000000000000018	0.20000000000000018			0.022	0.005	0.005
-5.4	0.1999999999999993	0.20000000000000018			0.077	0.013	0.013
-5.0	0.20000000000000018	0.20000000000000018			0.102	0.01	0.01
-4.6	0.20000000000000018	0.1999999999999993			0.215	0.015	0.015
-4.2	0.20000000000000018	0.20000000000000018			0.5	0.03	0.03
-3.8	0.20000000000000018	0.19999999999999973			1.01	0.03	0.03
-3.4000000000000004	0.19999999999999973	0.20000000000000018			1.64	0.04	0.04
-3.0	0.20000000000000018	0.20000000000000018			3.53	0.07	0.07
-2.5999999999999996	0.20000000000000018	0.19999999999999973			6.16	0.1	0.1
-2.2	0.19999999999999973	0.20000000000000018			9.42	0.12	0.12
-1.9	0.10000000000000009	0.09999999999999987			11.96	0.2	0.2
-1.7000000000000002	0.09999999999999987	0.10000000000000009			13.21	0.2	0.2
-1.5	0.10000000000000009	0.10000000000000009			13.85	0.21	0.21
-1.2999999999999998	0.10000000000000009	0.09999999999999987			14.86	0.22	0.22
-1.1	0.09999999999999987	0.10000000000000009			14.7	0.21	0.21
-0.9	0.09999999999999998	0.09999999999999998			14.9	0.22	0.22
-0.7	0.10000000000000009	0.09999999999999998			14.51	0.21	0.21
-0.5	0.09999999999999998	0.09999999999999998			14.43	0.21	0.21
-0.30000000000000004	0.09999999999999998	0.10000000000000003			14.79	0.22	0.22
-0.1	0.1	0.1			14.62	0.22	0.22
0.1	0.1	0.1			14.62	0.22	0.22
0.30000000000000004	0.10000000000000003	0.09999999999999998			14.79	0.22	0.22
0.5	0.09999999999999998	0.09999999999999998			14.87	0.23	0.23
0.7	0.09999999999999998	0.10000000000000009			15.19	0.22	0.22
0.9	0.09999999999999998	0.09999999999999998			15.65	0.23	0.23
1.1	0.10000000000000009	0.09999999999999987			15.56	0.23	0.23
1.2999999999999998	0.09999999999999987	0.10000000000000009			15.48	0.22	0.22
1.5	0.10000000000000009	0.10000000000000009			15.71	0.23	0.23
1.7000000000000002	0.10000000000000009	0.09999999999999987			15.47	0.22	0.22
1.9	0.09999999999999987	0.10000000000000009			14.38	0.22	0.22
2.2	0.20000000000000018	0.19999999999999973			12.72	0.14	0.14
2.5999999999999996	0.19999999999999973	0.20000000000000018			10.21	0.12	0.12
3.0	0.20000000000000018	0.20000000000000018			7.19	0.1	0.1
3.4000000000000004	0.20000000000000018	0.19999999999999973			5.33	0.09	0.09
3.8	0.19999999999999973	0.20000000000000018			3.51	0.07	0.07
4.2	0.20000000000000018	0.20000000000000018			2.03	0.05	0.05
4.6	0.1999999999999993	0.20000000000000018			1.04	0.04	0.04
5.0	0.20000000000000018	0.20000000000000018			0.451	0.024	0.024
5.4	0.20000000000000018	0.1999999999999993			0.204	0.017	0.017
5.8	0.20000000000000018	0.20000000000000018			0.08	0.009	0.009
# END YODA_SCATTER2D 


# BEGIN YODA_SCATTER2D /REF/EHS_1988_I265504/d03-x01-y03
Path=/REF/EHS_1988_I265504/d03-x01-y03
Type=Scatter2D
# xval   xerr-   xerr+   yval   yerr-   yerr+
-5.8	0.20000000000000018	0.20000000000000018			0.015	0.009	0.009
-5.4	0.1999999999999993	0.20000000000000018			0.082	0.022	0.022
-5.0	0.20000000000000018	0.20000000000000018			0.31	0.05	0.05
-4.6	0.20000000000000018	0.1999999999999993			0.56	0.06	0.06
-4.2	0.20000000000000018	0.20000000000000018			0.86	0.07	0.07
-3.8	0.20000000000000018	0.19999999999999973			1.48	0.09	0.09
-3.4000000000000004	0.19999999999999973	0.20000000000000018			2.87	0.13	0.13
-3.0	0.20000000000000018	0.20000000000000018			5.84	0.2	0.2
-2.5999999999999996	0.20000000000000018	0.19999999999999973			10.8	0.3	0.3
-2.2	0.19999999999999973	0.20000000000000018			16.9	0.3	0.3
-1.9	0.10000000000000009	0.09999999999999987			21.7	0.5	0.5
-1.7000000000000002	0.09999999999999987	0.10000000000000009			22.6	0.6	0.6
-1.5	0.10000000000000009	0.10000000000000009			25.6	0.6	0.6
-1.2999999999999998	0.10000000000000009	0.09999999999999987			26.5	0.6	0.6
-1.1	0.09999999999999987	0.10000000000000009			25.6	0.6	0.6
-0.9	0.09999999999999998	0.09999999999999998			28.6	0.6	0.6
-0.7	0.10000000000000009	0.09999999999999998			28.6	0.6	0.6
-0.5	0.09999999999999998	0.09999999999999998			27.0	0.6	0.6
-0.30000000000000004	0.09999999999999998	0.10000000000000003			26.6	0.6	0.6
-0.1	0.1	0.1			25.8	0.6	0.6
0.1	0.1	0.1			24.6	0.6	0.6
0.30000000000000004	0.10000000000000003	0.09999999999999998			26.7	0.6	0.6
0.5	0.09999999999999998	0.09999999999999998			25.9	0.6	0.6
0.7	0.09999999999999998	0.10000000000000009			27.2	0.6	0.6
0.9	0.09999999999999998	0.09999999999999998			26.2	0.6	0.6
1.1	0.10000000000000009	0.09999999999999987			25.5	0.6	0.6
1.2999999999999998	0.09999999999999987	0.10000000000000009			25.5	0.6	0.6
1.5	0.10000000000000009	0.10000000000000009			25.2	0.6	0.6
1.7000000000000002	0.10000000000000009	0.09999999999999987			22.3	0.5	0.5
1.9	0.09999999999999987	0.10000000000000009			23.3	0.5	0.5
2.2	0.20000000000000018	0.19999999999999973			21.0	0.4	0.4
2.5999999999999996	0.19999999999999973	0.20000000000000018			16.2	0.3	0.3
3.0	0.20000000000000018	0.20000000000000018			13.0	0.3	0.3
3.4000000000000004	0.20000000000000018	0.19999999999999973			10.5	0.3	0.3
3.8	0.19999999999999973	0.20000000000000018			9.69	0.27	0.27
4.2	0.20000000000000018	0.20000000000000018			6.2	0.23	0.23
4.6	0.1999999999999993	0.20000000000000018			2.87	0.16	0.16
5.0	0.20000000000000018	0.20000000000000018			1.53	0.12	0.12
5.4	0.20000000000000018	0.1999999999999993			0.6	0.07	0.07
5.8	0.20000000000000018	0.20000000000000018			0.19	0.04	0.04
# END YODA_SCATTER2D 


# BEGIN YODA_SCATTER2D /REF/EHS_1988_I265504/d04-x01-y01
Path=/REF/EHS_1988_I265504/d04-x01-y01
Type=Scatter2D
# xval   xerr-   xerr+   yval   yerr-   yerr+
-5.8	0.20000000000000018	0.20000000000000018			0.022	0.007	0.007
-5.4	0.1999999999999993	0.20000000000000018			0.036	0.009	0.009
-5.0	0.20000000000000018	0.20000000000000018			0.047	0.009	0.009
-4.6	0.20000000000000018	0.1999999999999993			0.135	0.015	0.015
-4.2	0.20000000000000018	0.20000000000000018			0.306	0.025	0.025
-3.8	0.20000000000000018	0.19999999999999973			0.502	0.026	0.026
-3.4000000000000004	0.19999999999999973	0.20000000000000018			0.94	0.04	0.04
-3.0	0.20000000000000018	0.20000000000000018			2.25	0.06	0.06
-2.5999999999999996	0.20000000000000018	0.19999999999999973			3.98	0.09	0.09
-2.2	0.19999999999999973	0.20000000000000018			6.47	0.12	0.12
-1.9	0.10000000000000009	0.09999999999999987			8.1	0.18	0.18
-1.7000000000000002	0.09999999999999987	0.10000000000000009			9.44	0.2	0.2
-1.5	0.10000000000000009	0.10000000000000009			9.93	0.2	0.2
-1.2999999999999998	0.10000000000000009	0.09999999999999987			10.62	0.2	0.2
-1.1	0.09999999999999987	0.10000000000000009			11.37	0.22	0.22
-0.9	0.09999999999999998	0.09999999999999998			12.31	0.22	0.22
-0.7	0.10000000000000009	0.09999999999999998			12.49	0.22	0.22
-0.5	0.09999999999999998	0.09999999999999998			13.01	0.23	0.23
-0.30000000000000004	0.09999999999999998	0.10000000000000003			13.52	0.23	0.23
-0.1	0.1	0.1			13.84	0.24	0.24
0.1	0.1	0.1			13.27	0.23	0.23
0.30000000000000004	0.10000000000000003	0.09999999999999998			13.5	0.24	0.24
0.5	0.09999999999999998	0.09999999999999998			13.85	0.24	0.24
0.7	0.09999999999999998	0.10000000000000009			14.61	0.25	0.25
0.9	0.09999999999999998	0.09999999999999998			13.65	0.23	0.23
1.1	0.10000000000000009	0.09999999999999987			13.4	0.22	0.22
1.2999999999999998	0.09999999999999987	0.10000000000000009			14.0	0.23	0.23
1.5	0.10000000000000009	0.10000000000000009			13.01	0.23	0.23
1.7000000000000002	0.10000000000000009	0.09999999999999987			12.43	0.22	0.22
1.9	0.09999999999999987	0.10000000000000009			11.18	0.2	0.2
2.2	0.20000000000000018	0.19999999999999973			9.89	0.14	0.14
2.5999999999999996	0.19999999999999973	0.20000000000000018			7.03	0.11	0.11
3.0	0.20000000000000018	0.20000000000000018			4.44	0.08	0.08
3.4000000000000004	0.20000000000000018	0.19999999999999973			2.51	0.06	0.06
3.8	0.19999999999999973	0.20000000000000018			1.38	0.05	0.05
4.2	0.20000000000000018	0.20000000000000018			0.68	0.03	0.03
4.6	0.1999999999999993	0.20000000000000018			0.402	0.029	0.029
5.0	0.20000000000000018	0.20000000000000018			0.165	0.017	0.017
5.4	0.20000000000000018	0.1999999999999993			0.087	0.013	0.013
5.8	0.20000000000000018	0.20000000000000018			0.028	0.009	0.009
# END YODA_SCATTER2D 


# BEGIN YODA_SCATTER2D /REF/EHS_1988_I265504/d04-x01-y02
Path=/REF/EHS_1988_I265504/d04-x01-y02
Type=Scatter2D
# xval   xerr-   xerr+   yval   yerr-   yerr+
-5.8	0.20000000000000018	0.20000000000000018			0.013	0.004	0.004
-5.4	0.1999999999999993	0.20000000000000018			0.047	0.009	0.009
-5.0	0.20000000000000018	0.20000000000000018			0.063	0.009	0.009
-4.6	0.20000000000000018	0.1999999999999993			0.131	0.013	0.013
-4.2	0.20000000000000018	0.20000000000000018			0.258	0.017	0.017
-3.8	0.20000000000000018	0.19999999999999973			0.453	0.023	0.023
-3.4000000000000004	0.19999999999999973	0.20000000000000018			0.84	0.03	0.03
-3.0	0.20000000000000018	0.20000000000000018			1.85	0.05	0.05
-2.5999999999999996	0.20000000000000018	0.19999999999999973			3.32	0.07	0.07
-2.2	0.19999999999999973	0.20000000000000018			5.32	0.09	0.09
-1.9	0.10000000000000009	0.09999999999999987			6.68	0.15	0.15
-1.7000000000000002	0.09999999999999987	0.10000000000000009			7.68	0.17	0.17
-1.5	0.10000000000000009	0.10000000000000009			8.41	0.17	0.17
-1.2999999999999998	0.10000000000000009	0.09999999999999987			9.32	0.18	0.18
-1.1	0.09999999999999987	0.10000000000000009			9.95	0.18	0.18
-0.9	0.09999999999999998	0.09999999999999998			10.56	0.19	0.19
-0.7	0.10000000000000009	0.09999999999999998			10.92	0.19	0.19
-0.5	0.09999999999999998	0.09999999999999998			10.95	0.19	0.19
-0.30000000000000004	0.09999999999999998	0.10000000000000003			11.61	0.2	0.2
-0.1	0.1	0.1			11.62	0.2	0.2
0.1	0.1	0.1			11.78	0.2	0.2
0.30000000000000004	0.10000000000000003	0.09999999999999998			12.15	0.21	0.21
0.5	0.09999999999999998	0.09999999999999998			12.04	0.2	0.2
0.7	0.09999999999999998	0.10000000000000009			11.85	0.2	0.2
0.9	0.09999999999999998	0.09999999999999998			11.89	0.2	0.2
1.1	0.10000000000000009	0.09999999999999987			11.79	0.2	0.2
1.2999999999999998	0.09999999999999987	0.10000000000000009			11.62	0.2	0.2
1.5	0.10000000000000009	0.10000000000000009			11.33	0.19	0.19
1.7000000000000002	0.10000000000000009	0.09999999999999987			10.14	0.18	0.18
1.9	0.09999999999999987	0.10000000000000009			9.45	0.18	0.18
2.2	0.20000000000000018	0.19999999999999973			7.54	0.1	0.1
2.5999999999999996	0.19999999999999973	0.20000000000000018			5.24	0.07	0.07
3.0	0.20000000000000018	0.20000000000000018			3.1	0.06	0.06
3.4000000000000004	0.20000000000000018	0.19999999999999973			1.73	0.05	0.05
3.8	0.19999999999999973	0.20000000000000018			0.86	0.03	0.03
4.2	0.20000000000000018	0.20000000000000018			0.412	0.021	0.021
4.6	0.1999999999999993	0.20000000000000018			0.202	0.015	0.015
5.0	0.20000000000000018	0.20000000000000018			0.082	0.009	0.009
5.4	0.20000000000000018	0.1999999999999993			0.039	0.008	0.008
5.8	0.20000000000000018	0.20000000000000018			0.02	0.005	0.005
# END YODA_SCATTER2D 


# BEGIN YODA_SCATTER2D /REF/EHS_1988_I265504/d04-x01-y03
Path=/REF/EHS_1988_I265504/d04-x01-y03
Type=Scatter2D
# xval   xerr-   xerr+   yval   yerr-   yerr+
-5.8	0.20000000000000018	0.20000000000000018			0.019	0.012	0.012
							
-5.0	0.20000000000000018	0.20000000000000018			0.071	0.021	0.021
-4.6	0.20000000000000018	0.1999999999999993			0.079	0.02	0.02
-4.2	0.20000000000000018	0.20000000000000018			0.4	0.05	0.05
-3.8	0.20000000000000018	0.19999999999999973			0.82	0.07	0.07
-3.4000000000000004	0.19999999999999973	0.20000000000000018			1.56	0.1	0.1
-3.0	0.20000000000000018	0.20000000000000018			2.98	0.14	0.14
-2.5999999999999996	0.20000000000000018	0.19999999999999973			6.94	0.22	0.22
-2.2	0.19999999999999973	0.20000000000000018			10.28	0.27	0.27
-1.9	0.10000000000000009	0.09999999999999987			11.78	0.4	0.4
-1.7000000000000002	0.09999999999999987	0.10000000000000009			13.13	0.42	0.42
-1.5	0.10000000000000009	0.10000000000000009			15.14	0.45	0.45
-1.2999999999999998	0.10000000000000009	0.09999999999999987			17.75	0.49	0.49
-1.1	0.09999999999999987	0.10000000000000009			18.44	0.51	0.51
-0.9	0.09999999999999998	0.09999999999999998			19.82	0.52	0.52
-0.7	0.10000000000000009	0.09999999999999998			20.14	0.53	0.53
-0.5	0.09999999999999998	0.09999999999999998			22.55	0.56	0.56
-0.30000000000000004	0.09999999999999998	0.10000000000000003			21.41	0.54	0.54
-0.1	0.1	0.1			22.26	0.56	0.56
0.1	0.1	0.1			20.3	0.53	0.53
0.30000000000000004	0.10000000000000003	0.09999999999999998			21.84	0.55	0.55
0.5	0.09999999999999998	0.09999999999999998			21.32	0.54	0.54
0.7	0.09999999999999998	0.10000000000000009			22.52	0.56	0.56
0.9	0.09999999999999998	0.09999999999999998			21.87	0.55	0.55
1.1	0.10000000000000009	0.09999999999999987			20.38	0.51	0.51
1.2999999999999998	0.09999999999999987	0.10000000000000009			18.53	0.48	0.48
1.5	0.10000000000000009	0.10000000000000009			16.34	0.45	0.45
1.7000000000000002	0.10000000000000009	0.09999999999999987			16.05	0.45	0.45
1.9	0.09999999999999987	0.10000000000000009			14.44	0.42	0.42
2.2	0.20000000000000018	0.19999999999999973			11.12	0.26	0.26
2.5999999999999996	0.19999999999999973	0.20000000000000018			7.16	0.2	0.2
3.0	0.20000000000000018	0.20000000000000018			4.17	0.15	0.15
3.4000000000000004	0.20000000000000018	0.19999999999999973			2.08	0.11	0.11
3.8	0.19999999999999973	0.20000000000000018			1.16	0.08	0.08
4.2	0.20000000000000018	0.20000000000000018			0.51	0.05	0.05
4.6	0.1999999999999993	0.20000000000000018			0.3	0.04	0.04
5.0	0.20000000000000018	0.20000000000000018			0.062	0.018	0.018
5.4	0.20000000000000018	0.1999999999999993			0.032	0.013	0.013
5.8	0.20000000000000018	0.20000000000000018			0.014	0.013	0.013
# END YODA_SCATTER2D 


# BEGIN YODA_SCATTER2D /REF/EHS_1988_I265504/d05-x01-y01
Path=/REF/EHS_1988_I265504/d05-x01-y01
Type=Scatter2D
# xval   xerr-   xerr+   yval   yerr-   yerr+
0.01	0.01	0.01			734.0	5.0	5.0
0.03	0.009999999999999998	0.010000000000000002			577.0	4.0	4.0
0.05	0.010000000000000002	0.009999999999999995			473.0	4.0	4.0
0.07	0.010000000000000009	0.009999999999999995			378.0	4.0	4.0
0.09	0.009999999999999995	0.010000000000000009			316.0	4.0	4.0
0.11	0.009999999999999995	0.009999999999999995			263.0	3.0	3.0
0.13	0.010000000000000009	0.010000000000000009			227.0	3.0	3.0
0.15000000000000002	0.010000000000000009	0.009999999999999981			196.0	3.0	3.0
0.16999999999999998	0.009999999999999981	0.010000000000000009			165.0	3.0	3.0
0.19	0.010000000000000009	0.010000000000000009			148.0	2.0	2.0
0.225	0.024999999999999994	0.024999999999999994			120.0	1.0	1.0
0.275	0.025000000000000022	0.024999999999999967			91.0	1.0	1.0
0.32499999999999996	0.024999999999999967	0.025000000000000022			70.0	1.0	1.0
0.375	0.025000000000000022	0.025000000000000022			56.0	1.0	1.0
0.42500000000000004	0.025000000000000022	0.024999999999999967			44.9	0.9	0.9
0.475	0.024999999999999967	0.025000000000000022			36.8	0.8	0.8
0.525	0.025000000000000022	0.025000000000000022			31.3	0.8	0.8
0.575	0.02499999999999991	0.025000000000000022			26.3	0.7	0.7
0.625	0.025000000000000022	0.025000000000000022			20.3	0.6	0.6
0.675	0.025000000000000022	0.02499999999999991			18.2	0.6	0.6
0.725	0.025000000000000022	0.025000000000000022			16.3	0.6	0.6
0.775	0.025000000000000022	0.025000000000000022			12.9	0.5	0.5
0.825	0.02499999999999991	0.025000000000000022			11.3	0.5	0.5
0.875	0.025000000000000022	0.025000000000000022			9.2	0.4	0.4
0.925	0.025000000000000022	0.02499999999999991			8.6	0.4	0.4
0.975	0.025000000000000022	0.025000000000000022			7.5	0.4	0.4
1.05	0.050000000000000044	0.050000000000000044			5.6	0.3	0.3
1.15	0.04999999999999982	0.050000000000000044			4.6	0.2	0.2
1.25	0.050000000000000044	0.050000000000000044			3.19	0.16	0.16
1.35	0.050000000000000044	0.04999999999999982			2.99	0.17	0.17
1.45	0.050000000000000044	0.050000000000000044			2.07	0.13	0.13
1.55	0.050000000000000044	0.050000000000000044			1.85	0.13	0.13
1.65	0.04999999999999982	0.050000000000000044			1.48	0.12	0.12
1.75	0.050000000000000044	0.050000000000000044			1.37	0.12	0.12
1.85	0.050000000000000044	0.04999999999999982			0.92	0.08	0.08
1.95	0.050000000000000044	0.050000000000000044			0.75	0.08	0.08
2.1	0.10000000000000009	0.10000000000000009			0.63	0.05	0.05
2.3	0.09999999999999964	0.10000000000000009			0.43	0.05	0.05
2.5	0.10000000000000009	0.10000000000000009			0.34	0.04	0.04
2.7	0.10000000000000009	0.09999999999999964			0.22	0.04	0.04
2.9	0.10000000000000009	0.10000000000000009			0.18	0.03	0.03
3.2	0.20000000000000018	0.19999999999999973			0.152	0.021	0.021
3.5999999999999996	0.19999999999999973	0.20000000000000018			0.08	0.014	0.014
4.0	0.20000000000000018	0.20000000000000018			0.041	0.012	0.012
4.4	0.20000000000000018	0.1999999999999993			0.037	0.011	0.011
4.8	0.20000000000000018	0.20000000000000018			0.021	0.007	0.007
# END YODA_SCATTER2D 


# BEGIN YODA_SCATTER2D /REF/EHS_1988_I265504/d05-x01-y02
Path=/REF/EHS_1988_I265504/d05-x01-y02
Type=Scatter2D
# xval   xerr-   xerr+   yval   yerr-   yerr+
0.01	0.01	0.01			604.0	4.0	4.0
0.03	0.009999999999999998	0.010000000000000002			477.0	4.0	4.0
0.05	0.010000000000000002	0.009999999999999995			381.0	3.0	3.0
0.07	0.010000000000000009	0.009999999999999995			309.0	3.0	3.0
0.09	0.009999999999999995	0.010000000000000009			256.0	3.0	3.0
0.11	0.009999999999999995	0.009999999999999995			217.0	3.0	3.0
0.13	0.010000000000000009	0.010000000000000009			185.0	2.0	2.0
0.15000000000000002	0.010000000000000009	0.009999999999999981			160.0	2.0	2.0
0.16999999999999998	0.009999999999999981	0.010000000000000009			140.0	2.0	2.0
0.19	0.010000000000000009	0.010000000000000009			121.0	2.0	2.0
0.225	0.024999999999999994	0.024999999999999994			106.0	1.0	1.0
0.275	0.025000000000000022	0.024999999999999967			76.0	1.0	1.0
0.32499999999999996	0.024999999999999967	0.025000000000000022			60.2	0.9	0.9
0.375	0.025000000000000022	0.025000000000000022			47.7	0.8	0.8
0.42500000000000004	0.025000000000000022	0.024999999999999967			38.7	0.8	0.8
0.475	0.024999999999999967	0.025000000000000022			32.4	0.7	0.7
0.525	0.025000000000000022	0.025000000000000022			26.0	0.6	0.6
0.575	0.02499999999999991	0.025000000000000022			22.3	0.6	0.6
0.625	0.025000000000000022	0.025000000000000022			19.0	0.5	0.5
0.675	0.025000000000000022	0.02499999999999991			15.4	0.5	0.5
0.725	0.025000000000000022	0.025000000000000022			13.3	0.5	0.5
0.775	0.025000000000000022	0.025000000000000022			12.2	0.5	0.5
0.825	0.02499999999999991	0.025000000000000022			9.4	0.4	0.4
0.875	0.025000000000000022	0.025000000000000022			8.8	0.4	0.4
0.925	0.025000000000000022	0.02499999999999991			7.5	0.3	0.3
0.975	0.025000000000000022	0.025000000000000022			6.0	0.3	0.3
1.05	0.050000000000000044	0.050000000000000044			5.3	0.2	0.2
1.15	0.04999999999999982	0.050000000000000044			4.3	0.2	0.2
1.25	0.050000000000000044	0.050000000000000044			3.4	0.17	0.17
1.35	0.050000000000000044	0.04999999999999982			2.55	0.15	0.15
1.45	0.050000000000000044	0.050000000000000044			2.22	0.14	0.14
1.55	0.050000000000000044	0.050000000000000044			1.54	0.12	0.12
1.65	0.04999999999999982	0.050000000000000044			1.4	0.12	0.12
1.75	0.050000000000000044	0.050000000000000044			1.22	0.11	0.11
1.85	0.050000000000000044	0.04999999999999982			0.91	0.09	0.09
1.95	0.050000000000000044	0.050000000000000044			0.84	0.07	0.07
2.1	0.10000000000000009	0.10000000000000009			0.5	0.05	0.05
2.3	0.09999999999999964	0.10000000000000009			0.44	0.04	0.04
2.5	0.10000000000000009	0.10000000000000009			0.31	0.04	0.04
2.7	0.10000000000000009	0.09999999999999964			0.22	0.03	0.03
2.9	0.10000000000000009	0.10000000000000009			0.17	0.03	0.03
3.2	0.20000000000000018	0.19999999999999973			0.127	0.017	0.017
3.5999999999999996	0.19999999999999973	0.20000000000000018			0.082	0.015	0.015
4.0	0.20000000000000018	0.20000000000000018			0.055	0.012	0.012
4.4	0.20000000000000018	0.1999999999999993			0.026	0.007	0.007
4.8	0.20000000000000018	0.20000000000000018			0.024	0.006	0.006
# END YODA_SCATTER2D 


# BEGIN YODA_SCATTER2D /REF/EHS_1988_I265504/d05-x01-y03
Path=/REF/EHS_1988_I265504/d05-x01-y03
Type=Scatter2D
# xval   xerr-   xerr+   yval   yerr-   yerr+
0.01	0.01	0.01			1104.0	13.0	13.0
0.03	0.009999999999999998	0.010000000000000002			841.0	11.0	11.0
0.05	0.010000000000000002	0.009999999999999995			689.0	10.0	10.0
0.07	0.010000000000000009	0.009999999999999995			561.0	9.0	9.0
0.09	0.009999999999999995	0.010000000000000009			458.0	8.0	8.0
0.11	0.009999999999999995	0.009999999999999995			382.0	7.0	7.0
0.13	0.010000000000000009	0.010000000000000009			323.0	7.0	7.0
0.15000000000000002	0.010000000000000009	0.009999999999999981			266.0	6.0	6.0
0.16999999999999998	0.009999999999999981	0.010000000000000009			253.0	6.0	6.0
0.19	0.010000000000000009	0.010000000000000009			227.0	6.0	6.0
0.225	0.024999999999999994	0.024999999999999994			183.0	3.0	3.0
0.275	0.025000000000000022	0.024999999999999967			134.0	3.0	3.0
0.32499999999999996	0.024999999999999967	0.025000000000000022			106.0	3.0	3.0
0.375	0.025000000000000022	0.025000000000000022			84.0	2.0	2.0
0.42500000000000004	0.025000000000000022	0.024999999999999967			66.0	2.0	2.0
0.475	0.024999999999999967	0.025000000000000022			57.0	2.0	2.0
0.525	0.025000000000000022	0.025000000000000022			42.5	1.6	1.6
0.575	0.02499999999999991	0.025000000000000022			40.6	1.6	1.6
0.625	0.025000000000000022	0.025000000000000022			35.4	1.5	1.5
0.675	0.025000000000000022	0.02499999999999991			25.8	1.2	1.2
0.725	0.025000000000000022	0.025000000000000022			22.2	1.2	1.2
0.775	0.025000000000000022	0.025000000000000022			19.0	1.1	1.1
0.825	0.02499999999999991	0.025000000000000022			17.5	1.1	1.1
0.875	0.025000000000000022	0.025000000000000022			16.7	1.0	1.0
0.925	0.025000000000000022	0.02499999999999991			12.0	0.9	0.9
0.975	0.025000000000000022	0.025000000000000022			10.0	0.8	0.8
1.05	0.050000000000000044	0.050000000000000044			9.5	0.6	0.6
1.15	0.04999999999999982	0.050000000000000044			6.4	0.4	0.4
1.25	0.050000000000000044	0.050000000000000044			5.3	0.4	0.4
1.35	0.050000000000000044	0.04999999999999982			4.2	0.4	0.4
1.45	0.050000000000000044	0.050000000000000044			3.7	0.3	0.3
1.55	0.050000000000000044	0.050000000000000044			2.8	0.3	0.3
1.65	0.04999999999999982	0.050000000000000044			2.4	0.3	0.3
1.75	0.050000000000000044	0.050000000000000044			2.2	0.3	0.3
1.85	0.050000000000000044	0.04999999999999982			1.8	0.2	0.2
1.95	0.050000000000000044	0.050000000000000044			1.4	0.2	0.2
2.1	0.10000000000000009	0.10000000000000009			1.07	0.14	0.14
2.3	0.09999999999999964	0.10000000000000009			0.64	0.1	0.1
2.5	0.10000000000000009	0.10000000000000009			0.6	0.1	0.1
2.7	0.10000000000000009	0.09999999999999964			0.33	0.07	0.07
2.9	0.10000000000000009	0.10000000000000009			0.23	0.07	0.07
3.2	0.20000000000000018	0.19999999999999973			0.2	0.04	0.04
3.5999999999999996	0.19999999999999973	0.20000000000000018			0.14	0.04	0.04
4.0	0.20000000000000018	0.20000000000000018			0.06	0.03	0.03
4.4	0.20000000000000018	0.1999999999999993			0.08	0.03	0.03
4.8	0.20000000000000018	0.20000000000000018			0.05	0.03	0.03
# END YODA_SCATTER2D 


# BEGIN YODA_SCATTER2D /REF/EHS_1988_I265504/d06-x01-y01
Path=/REF/EHS_1988_I265504/d06-x01-y01
Type=Scatter2D
# xval   xerr-   xerr+   yval   yerr-   yerr+
0.01	0.01	0.01			561.0	5.0	5.0
0.03	0.009999999999999998	0.010000000000000002			425.0	4.0	4.0
0.05	0.010000000000000002	0.009999999999999995			325.0	4.0	4.0
0.07	0.010000000000000009	0.009999999999999995			265.0	4.0	4.0
0.09	0.009999999999999995	0.010000000000000009			217.0	3.0	3.0
0.11	0.009999999999999995	0.009999999999999995			175.0	3.0	3.0
0.13	0.010000000000000009	0.010000000000000009			149.0	3.0	3.0
0.15000000000000002	0.010000000000000009	0.009999999999999981			121.0	2.0	2.0
0.16999999999999998	0.009999999999999981	0.010000000000000009			107.0	2.0	2.0
0.19	0.010000000000000009	0.010000000000000009			92.0	2.0	2.0
0.225	0.024999999999999994	0.024999999999999994			72.0	1.0	1.0
0.275	0.025000000000000022	0.024999999999999967			53.0	1.0	1.0
0.32499999999999996	0.024999999999999967	0.025000000000000022			38.9	0.8	0.8
0.375	0.025000000000000022	0.025000000000000022			31.1	0.7	0.7
0.42500000000000004	0.025000000000000022	0.024999999999999967			24.9	0.6	0.6
0.475	0.024999999999999967	0.025000000000000022			19.5	0.5	0.5
0.525	0.025000000000000022	0.025000000000000022			15.9	0.5	0.5
0.575	0.02499999999999991	0.025000000000000022			12.5	0.4	0.4
0.625	0.025000000000000022	0.025000000000000022			10.1	0.4	0.4
0.675	0.025000000000000022	0.02499999999999991			8.7	0.3	0.3
0.725	0.025000000000000022	0.025000000000000022			7.1	0.3	0.3
0.775	0.025000000000000022	0.025000000000000022			6.8	0.3	0.3
0.825	0.02499999999999991	0.025000000000000022			5.5	0.3	0.3
0.875	0.025000000000000022	0.025000000000000022			3.9	0.2	0.2
0.925	0.025000000000000022	0.02499999999999991			3.4	0.2	0.2
0.975	0.02499999999999993	0.02500000000000004			3.3	0.2	0.2
1.05	0.050000000000000044	0.050000000000000044			2.68	0.14	0.14
1.15	0.04999999999999982	0.050000000000000044			2.15	0.12	0.12
1.25	0.050000000000000044	0.050000000000000044			1.49	0.1	0.1
1.35	0.050000000000000044	0.04999999999999982			1.23	0.09	0.09
1.45	0.050000000000000044	0.050000000000000044			0.97	0.08	0.08
1.55	0.050000000000000044	0.050000000000000044			0.69	0.06	0.06
1.65	0.04999999999999982	0.050000000000000044			0.6	0.06	0.06
1.75	0.050000000000000044	0.050000000000000044			0.53	0.06	0.06
1.85	0.050000000000000044	0.04999999999999982			0.5	0.06	0.06
1.95	0.050000000000000044	0.050000000000000044			0.33	0.05	0.05
2.1	0.10000000000000009	0.10000000000000009			0.32	0.03	0.03
2.3	0.09999999999999964	0.10000000000000009			0.141	0.021	0.021
2.5	0.10000000000000009	0.10000000000000009			0.157	0.023	0.023
2.7	0.10000000000000009	0.09999999999999964			0.113	0.027	0.027
2.9	0.10000000000000009	0.10000000000000009			0.071	0.018	0.018
3.2	0.20000000000000018	0.19999999999999973			0.042	0.011	0.011
3.5999999999999996	0.19999999999999973	0.20000000000000018			0.031	0.008	0.008
4.0	0.20000000000000018	0.20000000000000018			0.014	0.004	0.004
4.4	0.20000000000000018	0.1999999999999993			0.011	0.004	0.004
4.8	0.20000000000000018	0.20000000000000018			0.007	0.003	0.003
# END YODA_SCATTER2D 


# BEGIN YODA_SCATTER2D /REF/EHS_1988_I265504/d06-x01-y02
Path=/REF/EHS_1988_I265504/d06-x01-y02
Type=Scatter2D
# xval   xerr-   xerr+   yval   yerr-   yerr+
0.01	0.01	0.01			469.0	4.0	4.0
0.03	0.009999999999999998	0.010000000000000002			348.0	4.0	4.0
0.05	0.010000000000000002	0.009999999999999995			274.0	3.0	3.0
0.07	0.010000000000000009	0.009999999999999995			225.0	3.0	3.0
0.09	0.009999999999999995	0.010000000000000009			176.0	3.0	3.0
0.11	0.009999999999999995	0.009999999999999995			148.0	2.0	2.0
0.13	0.010000000000000009	0.010000000000000009			122.0	2.0	2.0
0.15000000000000002	0.010000000000000009	0.009999999999999981			105.0	2.0	2.0
0.16999999999999998	0.009999999999999981	0.010000000000000009			89.0	2.0	2.0
0.19	0.010000000000000009	0.010000000000000009			77.0	2.0	2.0
0.225	0.024999999999999994	0.024999999999999994			60.0	1.0	1.0
0.275	0.025000000000000022	0.024999999999999967			45.4	0.8	0.8
0.32499999999999996	0.024999999999999967	0.025000000000000022			33.1	0.7	0.7
0.375	0.025000000000000022	0.025000000000000022			25.4	0.6	0.6
0.42500000000000004	0.025000000000000022	0.024999999999999967			20.2	0.5	0.5
0.475	0.024999999999999967	0.025000000000000022			16.5	0.5	0.5
0.525	0.025000000000000022	0.025000000000000022			12.8	0.4	0.4
0.575	0.02499999999999991	0.025000000000000022			10.7	0.4	0.4
0.625	0.025000000000000022	0.025000000000000022			8.4	0.3	0.3
0.675	0.025000000000000022	0.02499999999999991			7.2	0.3	0.3
0.725	0.025000000000000022	0.025000000000000022			6.3	0.3	0.3
0.775	0.025000000000000022	0.025000000000000022			5.1	0.3	0.3
0.825	0.02499999999999991	0.025000000000000022			4.7	0.2	0.2
0.875	0.025000000000000022	0.025000000000000022			3.8	0.2	0.2
0.925	0.025000000000000022	0.02499999999999991			3.18	0.18	0.18
#0.525	0.42499999999999993	0.42500000000000004			2.75	0.16	0.16
1.05	0.050000000000000044	0.050000000000000044			2.24	0.11	0.11
1.15	0.04999999999999982	0.050000000000000044			1.55	0.09	0.09
1.25	0.050000000000000044	0.050000000000000044			1.26	0.08	0.08
1.35	0.050000000000000044	0.04999999999999982			1.03	0.07	0.07
1.45	0.050000000000000044	0.050000000000000044			0.83	0.07	0.07
1.55	0.050000000000000044	0.050000000000000044			0.54	0.05	0.05
1.65	0.04999999999999982	0.050000000000000044			0.63	0.06	0.06
1.75	0.050000000000000044	0.050000000000000044			0.46	0.05	0.05
1.85	0.050000000000000044	0.04999999999999982			0.48	0.06	0.06
1.95	0.050000000000000044	0.050000000000000044			0.35	0.05	0.05
2.1	0.10000000000000009	0.10000000000000009			0.22	0.03	0.03
2.3	0.09999999999999964	0.10000000000000009			0.213	0.025	0.025
2.5	0.10000000000000009	0.10000000000000009			0.152	0.021	0.021
2.7	0.10000000000000009	0.09999999999999964			0.096	0.019	0.019
2.9	0.10000000000000009	0.10000000000000009			0.074	0.014	0.014
3.2	0.20000000000000018	0.19999999999999973			0.064	0.011	0.011
3.5999999999999996	0.19999999999999973	0.20000000000000018			0.038	0.011	0.011
4.0	0.20000000000000018	0.20000000000000018			0.018	0.007	0.007
4.4	0.20000000000000018	0.1999999999999993			0.013	0.004	0.004
4.8	0.20000000000000018	0.20000000000000018			0.006	0.003	0.003
# END YODA_SCATTER2D 


# BEGIN YODA_SCATTER2D /REF/EHS_1988_I265504/d06-x01-y03
Path=/REF/EHS_1988_I265504/d06-x01-y03
Type=Scatter2D
# xval   xerr-   xerr+   yval   yerr-   yerr+
0.01	0.01	0.01			817.0	11.0	11.0
0.03	0.01	0.01			627.0	10.0	10.0
0.05	0.01	0.01			458.0	8.0	8.0
0.07	0.01	0.01			383.0	8.0	8.0
0.09	0.01	0.01			319.0	7.0	7.0
#0.11	0.01	0.01			251.0	6.0	6.0
0.13	0.01	0.01			208.0	6.0	6.0
0.15000000000000002	0.010000000000000009	0.009999999999999981			179.0	5.0	5.0
0.16999999999999998	0.009999999999999981	0.010000000000000009			148.0	5.0	5.0
0.19	0.010000000000000009	0.010000000000000009			139.0	5.0	5.0
0.225	0.024999999999999994	0.024999999999999994			107.0	2.0	2.0
0.275	0.025000000000000022	0.024999999999999967			79.0	2.0	2.0
0.32499999999999996	0.024999999999999967	0.025000000000000022			60.3	1.8	1.8
0.375	0.025000000000000022	0.025000000000000022			39.4	1.6	1.6
0.42500000000000004	0.025000000000000022	0.024999999999999967			33.0	1.5	1.5
0.475	0.024999999999999967	0.025000000000000022			26.4	1.3	1.3
0.525	0.025000000000000022	0.025000000000000022			22.1	1.1	1.1
0.575	0.02499999999999991	0.025000000000000022			17.9	1.0	1.0
0.625	0.025000000000000022	0.025000000000000022			12.5	0.8	0.8
0.675	0.025000000000000022	0.02499999999999991			12.0	0.8	0.8
0.725	0.025000000000000022	0.025000000000000022			10.5	0.7	0.7
0.775	0.025000000000000022	0.025000000000000022			8.2	0.7	0.7
0.825	0.02499999999999991	0.025000000000000022			7.1	0.6	0.6
0.875	0.025000000000000022	0.025000000000000022			8.7	0.7	0.7
0.925	0.025000000000000022	0.02499999999999991			6.0	0.6	0.6
#0.525	0.42499999999999993	0.42500000000000004			3.9	0.4	0.4
1.05	0.050000000000000044	0.050000000000000044			3.3	0.3	0.3
1.15	0.04999999999999982	0.050000000000000044			2.71	0.26	0.26
1.25	0.050000000000000044	0.050000000000000044			2.22	0.24	0.24
1.35	0.050000000000000044	0.04999999999999982			1.77	0.21	0.21
1.45	0.050000000000000044	0.050000000000000044			1.93	0.24	0.24
1.55	0.050000000000000044	0.050000000000000044			0.51	0.11	0.11
1.65	0.04999999999999982	0.050000000000000044			0.63	0.12	0.12
1.75	0.050000000000000044	0.050000000000000044			0.8	0.14	0.14
1.85	0.050000000000000044	0.04999999999999982			0.79	0.15	0.15
1.95	0.050000000000000044	0.050000000000000044			0.51	0.11	0.11
2.1	0.10000000000000009	0.10000000000000009			0.28	0.06	0.06
2.3	0.09999999999999964	0.10000000000000009			0.38	0.08	0.08
2.5	0.10000000000000009	0.10000000000000009			0.21	0.05	0.05
2.7	0.10000000000000009	0.09999999999999964			0.3	0.09	0.09
2.9	0.10000000000000009	0.10000000000000009			0.13	0.04	0.04
3.2	0.20000000000000018	0.19999999999999973			0.098	0.028	0.028
3.5999999999999996	0.19999999999999973	0.20000000000000018			0.015	0.01	0.01
4.0	0.20000000000000018	0.20000000000000018			0.015	0.011	0.011
							
4.8	0.20000000000000018	0.20000000000000018			0.066	0.028	0.028
# END YODA_SCATTER2D 




More information about the Rivet mailing list