diff --git a/analyses/pluginATLAS/ATLAS_2015_I1351916.cc b/analyses/pluginATLAS/ATLAS_2015_I1351916.cc --- a/analyses/pluginATLAS/ATLAS_2015_I1351916.cc +++ b/analyses/pluginATLAS/ATLAS_2015_I1351916.cc @@ -1,150 +1,142 @@ // -*- C++ -*- #include "Rivet/Analysis.hh" #include "Rivet/Projections/FinalState.hh" #include "Rivet/Projections/IdentifiedFinalState.hh" #include "Rivet/Projections/DressedLeptons.hh" namespace Rivet { class ATLAS_2015_I1351916 : public Analysis { public: /// @name Constructors etc. //@{ /// Constructors - ATLAS_2015_I1351916(string name="ATLAS_2015_I1351916", size_t mode=0) - : Analysis(name), _mode(mode) // pick electron channel by default - { } + ATLAS_2015_I1351916(const string name="ATLAS_2015_I1351916", size_t mode=0, + const string ref_data="ATLAS_2015_I1351916") : Analysis(name) { + _mode = mode; // pick electron channel by default + setRefDataName(ref_data); + } //@} /// @name Analysis methods //@{ /// Book histograms and initialise projections before the run void init() { const FinalState fs; IdentifiedFinalState bareleptons(fs); bareleptons.acceptIdPair(_mode? PID::MUON : PID::ELECTRON); const Cut cuts = (_mode == 0) ? (Cuts::pT > 25*GeV && Cuts::abseta < 4.9) : (Cuts::pT > 20*GeV && Cuts::abseta < 2.47); DressedLeptons leptons(fs, bareleptons, 0.1, cuts, true); declare(leptons, "leptons"); // Book dummy histograms for heterogeneous merging - /// @todo AB: Don't we have a nicer way to book dummy/tmp histos from ref? - string label = "NCC"; - string hname = "d01-x01-y01"; - const Scatter2D& ref = refData(hname); - hname = "d01-x01-y02"; - _h[label + "_pos"] = bookHisto1D(hname, ref); - hname = "d01-x01-y03"; - _h[label + "_neg"] = bookHisto1D(hname, ref); - if (_mode == 0) { - label = "NCF"; - hname = "d01-x02-y01"; - const Scatter2D& ref_cf = refData(hname); - hname = "d01-x02-y02"; - _h[label + "_pos"] = bookHisto1D(hname, ref_cf); - hname = "d01-x02-y03"; - _h[label + "_neg"] = bookHisto1D(hname, ref_cf); + const Scatter2D& ref = refData(_mode? 4 : 2, 1, 2); + _h["NCC_pos"] = bookHisto1D("_ncc_pos", ref); + _h["NCC_neg"] = bookHisto1D("_ncc_neg", ref); + _s["CC"] = bookScatter2D(_mode? 4 : 2, 1, 2, true); + + if (_mode == 0) { // electron-channel only + const Scatter2D& ref_cf = refData(3, 1, 2); + _h["NCF_pos"] = bookHisto1D("_ncf_pos", ref_cf); + _h["NCF_neg"] = bookHisto1D("_ncf_neg", ref_cf); + _s["CF"] = bookScatter2D(3, 1, 2, true); } - - // Book asymmetry scatter plots - _s["CC"] = bookScatter2D(1, 1, 1, true); - if (_mode == 0) _s["CF"] = bookScatter2D(1, 2, 1, true); } /// Perform the per-event analysis void analyze(const Event& e) { // Get and cut on dressed leptons const vector& leptons = apply(e, "leptons").dressedLeptons(); if (leptons.size() != 2) vetoEvent; // require exactly two leptons if (leptons[0].threeCharge() * leptons[1].threeCharge() > 0) vetoEvent; // require opposite charge // Identify lepton vs antilepton const Particle& lpos = leptons[(leptons[0].threeCharge() > 0) ? 0 : 1]; const Particle& lneg = leptons[(leptons[0].threeCharge() < 0) ? 0 : 1]; string label = "N"; if (_mode == 1) {// electron channel label += "CC"; // only central-central for muons } else { // electron channel const double eta1 = lpos.abseta(); const double eta2 = lneg.abseta(); if ( (eta1 < 2.47 && inRange(eta2, 2.5, 4.9)) || (eta2 < 2.47 && inRange(eta1, 2.5, 4.9)) ) label += "CF"; // central-forward else if (eta1 < 2.47 && eta2 < 2.47) label += "CC"; // central-central else vetoEvent; // ain't no forward-forward } const double cosThetaStar = cosCollinsSoper(lneg, lpos); const double mll = (lpos.mom() + lneg.mom()).mass(); label += cosThetaStar < 0.0? "_neg" : "_pos"; _h[label]->fill(mll/GeV, e.weight()); } /// Normalise histograms etc., after the run void finalize() { const double sf = crossSectionPerEvent() / picobarn; for (const auto& key_hist : _h) scale(key_hist.second, sf); divide(*_h["NCC_pos"] - *_h["NCC_neg"], *_h["NCC_pos"] + *_h["NCC_neg"], _s["CC"]); if (!_mode) divide(*_h["NCF_pos"] - *_h["NCF_neg"], *_h["NCF_pos"] + *_h["NCF_neg"], _s["CF"]); } // Cosine of the decay angle in the Collins-Soper frame double cosCollinsSoper(const FourMomentum& l1, const FourMomentum& l2) { const FourMomentum ll = l1 + l2; const double nom = (l1.E() + l1.pz()) * (l2.E() - l2.pz()) - (l1.E() - l1.pz()) * (l2.E() + l2.pz()); const double denom = ll.mass() * sqrt( sqr(ll.mass()) + sqr(ll.pt()) ); return sign(ll.pz()) * safediv(nom, denom); // protect against division by zero, you never know... } //@} protected: /// Electron or muon mode = 0 or 1, for use by derived _EL, _MU analysis classes size_t _mode; private: /// Histograms map _h; /// Asymmetries map _s; }; class ATLAS_2015_I1351916_EL : public ATLAS_2015_I1351916 { public: ATLAS_2015_I1351916_EL() : ATLAS_2015_I1351916("ATLAS_2015_I1351916_EL", 0) { } }; class ATLAS_2015_I1351916_MU : public ATLAS_2015_I1351916 { public: ATLAS_2015_I1351916_MU() : ATLAS_2015_I1351916("ATLAS_2015_I1351916_MU", 1) { } }; DECLARE_RIVET_PLUGIN(ATLAS_2015_I1351916); DECLARE_RIVET_PLUGIN(ATLAS_2015_I1351916_EL); DECLARE_RIVET_PLUGIN(ATLAS_2015_I1351916_MU); } diff --git a/analyses/pluginATLAS/ATLAS_2015_I1351916.info b/analyses/pluginATLAS/ATLAS_2015_I1351916.info --- a/analyses/pluginATLAS/ATLAS_2015_I1351916.info +++ b/analyses/pluginATLAS/ATLAS_2015_I1351916.info @@ -1,45 +1,45 @@ Name: ATLAS_2015_I1351916 Year: 2015 Summary: $Z$ forward-backward asymmetry Experiment: ATLAS Collider: LHC InspireID: 1351916 Status: VALIDATED Authors: - Christian Gutschow References: - arXiv:1503.03709 [hep-ex] - JHEP 09 (2015) 049 - doi:10.1007/JHEP09(2015)049 RunInfo: Inclusive $Z$ in the electron channel Beams: [p+, p+] Energies: [7000] PtCuts: [25,25] NeedCrossSection: True Description: 'Measurements from the ATLAS experiment of the forward-backward asymmetry in the reaction $pp \rightarrow Z / \gamma^\ast \rightarrow \ell^+\ell^-$, with $\ell$ being electrons or muons. The results are based on the full set of data collected in 2011 in $pp$ collisions at the LHC at $\sqrt{s} = 7$~TeV, corresponding to an integrated luminosity of 4.8~$\text{fb}^{-1}$. The measured asymmetry values are found to be in agreement with the corresponding Standard Model predictions. The default routine will pick up the electron decay channel of the $Z$ boson. Individual channels can be specified directly with the plugins ATLAS_2014_I1312627_EL and ATLAS_2014_I1312627_MU, respectively. N.B. When running on multiple files, the asymmetry might have to be reconstructed in a post-processing step. To that end, the necessary Histo1D objects are written out as well. The asymmetry is a Scatter2D - objects ending in y01 and is constructed from the Histo1D objects (ending in y02 and y03) in the - following way: y01 = (y02 - y03) / (y02 + y03)' + object and is constructed from auxiliary Histo1D objects retained in the output file. The asymmetry is + constructed in the following way: asym = (pos - neg) / (pos + neg)' BibKey: Aad:2015uau BibTeX: '@article{Aad:2015uau, author = "Aad, Georges and others", title = "{Measurement of the forward-backward asymmetry of electron and muon pair-production in $pp$ collisions at $\sqrt{s} = 7$~TeV with the ATLAS detector}", collaboration = "ATLAS", year = "2015", eprint = "1503.03709", archivePrefix = "arXiv", primaryClass = "hep-ex", reportNumber = "CERN-PH-EP-2014-259", SLACcitation = "%%CITATION = ARXIV:1503.03709;%%" }' diff --git a/analyses/pluginATLAS/ATLAS_2015_I1351916.yoda b/analyses/pluginATLAS/ATLAS_2015_I1351916.yoda --- a/analyses/pluginATLAS/ATLAS_2015_I1351916.yoda +++ b/analyses/pluginATLAS/ATLAS_2015_I1351916.yoda @@ -1,55 +1,246 @@ BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1351916/d01-x01-y01 IsRef: 1 Path: /REF/ATLAS_2015_I1351916/d01-x01-y01 -Title: ~ +Title: doi:10.17182/hepdata.76996.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +6.800000e+01 2.000000e+00 2.000000e+00 -5.970000e-01 1.588238e-02 1.767060e-02 +7.300000e+01 3.000000e+00 3.000000e+00 -5.350000e-01 3.237298e-02 3.237298e-02 +7.800000e+01 2.000000e+00 2.000000e+00 -4.150000e-01 5.218582e-02 5.218582e-02 +8.300000e+01 3.000000e+00 3.000000e+00 -2.070000e-01 3.411510e-02 3.411510e-02 +8.700000e+01 1.000000e+00 1.000000e+00 -6.800000e-02 1.514629e-02 1.514629e-02 +8.850000e+01 5.000000e-01 5.000000e-01 -1.200000e-02 9.767292e-03 9.865597e-03 +8.950000e+01 5.000000e-01 5.000000e-01 2.790000e-02 1.002846e-02 1.002846e-02 +9.050000e+01 5.000000e-01 5.000000e-01 6.660000e-02 8.828363e-03 8.828363e-03 +9.150000e+01 5.000000e-01 5.000000e-01 1.010000e-01 9.124144e-03 9.124144e-03 +9.250000e+01 5.000000e-01 5.000000e-01 1.350000e-01 8.944272e-03 8.944272e-03 +9.350000e+01 5.000000e-01 5.000000e-01 1.700000e-01 9.257429e-03 9.257429e-03 +9.450000e+01 5.000000e-01 5.000000e-01 2.050000e-01 1.812209e-02 1.812209e-02 +9.750000e+01 2.500000e+00 2.500000e+00 2.770000e-01 3.014963e-02 3.014963e-02 +1.025000e+02 2.500000e+00 2.500000e+00 4.000000e-01 2.161041e-02 2.161041e-02 +1.075000e+02 2.500000e+00 2.500000e+00 4.830000e-01 2.500000e-02 2.308679e-02 +1.130000e+02 3.000000e+00 3.000000e+00 5.510000e-01 1.494021e-02 1.102089e-02 +1.205000e+02 4.500000e+00 4.500000e+00 5.770000e-01 3.008322e-02 2.459675e-02 +1.875000e+02 6.250000e+01 6.250000e+01 6.620000e-01 6.158937e-02 4.187183e-02 +3.750000e+02 1.250000e+02 1.250000e+02 4.970000e-01 2.236068e-01 1.360147e-01 +7.500000e+02 2.500000e+02 2.500000e+02 9.550000e-01 2.797159e-01 2.697425e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1351916/d01-x01-y02 +IsRef: 1 +Path: /REF/ATLAS_2015_I1351916/d01-x01-y02 +Title: doi:10.17182/hepdata.76996.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +6.800000e+01 2.000000e+00 2.000000e+00 -4.500000e-01 6.735726e-02 5.215362e-02 +7.300000e+01 3.000000e+00 3.000000e+00 -5.130000e-01 4.992995e-02 3.818377e-02 +7.800000e+01 2.000000e+00 2.000000e+00 -3.800000e-01 5.478138e-02 4.472136e-02 +8.300000e+01 3.000000e+00 3.000000e+00 -2.570000e-01 4.972927e-02 3.453983e-02 +8.700000e+01 1.000000e+00 1.000000e+00 -1.220000e-01 3.388643e-02 1.866253e-02 +8.850000e+01 5.000000e-01 5.000000e-01 -3.100000e-02 2.372003e-02 1.332817e-02 +8.950000e+01 5.000000e-01 5.000000e-01 1.900000e-02 2.147673e-02 1.188486e-02 +9.050000e+01 5.000000e-01 5.000000e-01 5.800000e-02 2.134104e-02 9.493682e-03 +9.150000e+01 5.000000e-01 5.000000e-01 9.200000e-02 2.329571e-02 1.066255e-02 +9.250000e+01 5.000000e-01 5.000000e-01 1.250000e-01 2.434769e-02 9.980982e-03 +9.350000e+01 5.000000e-01 5.000000e-01 1.590000e-01 2.942788e-02 1.392839e-02 +9.450000e+01 5.000000e-01 5.000000e-01 1.930000e-01 3.255764e-02 1.897367e-02 +9.750000e+01 2.500000e+00 2.500000e+00 2.420000e-01 4.783524e-02 3.033496e-02 +1.025000e+02 2.500000e+00 2.500000e+00 3.290000e-01 6.815424e-02 3.275668e-02 +1.075000e+02 2.500000e+00 2.500000e+00 4.450000e-01 4.390900e-02 2.906888e-02 +1.130000e+02 3.000000e+00 3.000000e+00 5.560000e-01 6.132699e-02 3.905125e-02 +1.205000e+02 4.500000e+00 4.500000e+00 6.100000e-01 1.137585e-01 9.741663e-02 +1.875000e+02 6.250000e+01 6.250000e+01 5.270000e-01 1.303879e-01 1.303879e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1351916/d01-x01-y03 +IsRef: 1 +Path: /REF/ATLAS_2015_I1351916/d01-x01-y03 +Title: doi:10.17182/hepdata.76996.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +6.800000e+01 2.000000e+00 2.000000e+00 -5.860000e-01 1.200167e-02 1.200167e-02 +7.300000e+01 3.000000e+00 3.000000e+00 -5.533000e-01 8.713208e-03 8.875246e-03 +7.800000e+01 2.000000e+00 2.000000e+00 -4.321000e-01 9.426028e-03 9.693812e-03 +8.300000e+01 3.000000e+00 3.000000e+00 -2.223000e-01 8.184131e-03 8.431489e-03 +8.700000e+01 1.000000e+00 1.000000e+00 -7.460000e-02 7.071068e-03 7.158911e-03 +8.850000e+01 5.000000e-01 5.000000e-01 -1.590000e-02 6.762396e-03 6.762396e-03 +8.950000e+01 5.000000e-01 5.000000e-01 2.540000e-02 4.332436e-03 4.332436e-03 +9.050000e+01 5.000000e-01 5.000000e-01 6.490000e-02 2.469818e-03 2.469818e-03 +9.150000e+01 5.000000e-01 5.000000e-01 9.940000e-02 2.080865e-03 2.080865e-03 +9.250000e+01 5.000000e-01 5.000000e-01 1.342000e-01 3.361547e-03 3.361547e-03 +9.350000e+01 5.000000e-01 5.000000e-01 1.683000e-01 5.508176e-03 5.412024e-03 +9.450000e+01 5.000000e-01 5.000000e-01 2.032000e-01 6.937579e-03 6.937579e-03 +9.750000e+01 2.500000e+00 2.500000e+00 2.741000e-01 7.368175e-03 7.368175e-03 +1.025000e+02 2.500000e+00 2.500000e+00 4.050000e-01 1.002247e-02 1.002247e-02 +1.075000e+02 2.500000e+00 2.500000e+00 4.914000e-01 8.778383e-03 8.704596e-03 +1.130000e+02 3.000000e+00 3.000000e+00 5.557000e-01 9.300538e-03 9.300538e-03 +1.205000e+02 4.500000e+00 4.500000e+00 6.080000e-01 1.102089e-02 1.102089e-02 +1.875000e+02 6.250000e+01 6.250000e+01 6.610000e-01 1.198541e-02 1.198541e-02 +3.750000e+02 1.250000e+02 1.250000e+02 6.730000e-01 4.382921e-02 4.382921e-02 +7.500000e+02 2.500000e+02 2.500000e+02 8.900000e-01 7.516648e-02 7.516648e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1351916/d02-x01-y01 +IsRef: 1 +Path: /REF/ATLAS_2015_I1351916/d02-x01-y01 +Title: doi:10.17182/hepdata.76996.v1/t2 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +6.800000e+01 2.000000e+00 2.000000e+00 -1.300000e-01 3.969887e-02 3.969887e-02 +7.300000e+01 3.000000e+00 3.000000e+00 -4.300000e-02 3.361547e-02 3.361547e-02 +7.800000e+01 2.000000e+00 2.000000e+00 -4.600000e-02 2.701851e-02 2.624881e-02 +8.300000e+01 3.000000e+00 3.000000e+00 -3.400000e-02 1.342721e-02 1.342721e-02 +8.700000e+01 1.000000e+00 1.000000e+00 -1.400000e-02 8.823265e-03 8.987213e-03 +8.850000e+01 5.000000e-01 5.000000e-01 -1.800000e-03 4.967897e-03 5.099020e-03 +8.950000e+01 5.000000e-01 5.000000e-01 4.500000e-03 4.622770e-03 4.701064e-03 +9.050000e+01 5.000000e-01 5.000000e-01 1.100000e-02 5.423099e-03 5.423099e-03 +9.150000e+01 5.000000e-01 5.000000e-01 1.700000e-02 5.200000e-03 5.292447e-03 +9.250000e+01 5.000000e-01 5.000000e-01 2.400000e-02 7.854935e-03 7.854935e-03 +9.350000e+01 5.000000e-01 5.000000e-01 3.100000e-02 1.077033e-02 1.077033e-02 +9.450000e+01 5.000000e-01 5.000000e-01 4.000000e-02 1.382353e-02 1.382353e-02 +9.750000e+01 2.500000e+00 2.500000e+00 6.300000e-02 1.471768e-02 1.471768e-02 +1.025000e+02 2.500000e+00 2.500000e+00 7.300000e-02 2.163331e-02 2.080865e-02 +1.075000e+02 2.500000e+00 2.500000e+00 7.300000e-02 3.712142e-02 3.190611e-02 +1.130000e+02 3.000000e+00 3.000000e+00 1.460000e-01 3.360060e-02 3.201562e-02 +1.205000e+02 4.500000e+00 4.500000e+00 9.300000e-02 3.635932e-02 3.383785e-02 +1.875000e+02 6.250000e+01 6.250000e+01 1.800000e-01 5.001000e-02 1.972308e-02 +3.750000e+02 1.250000e+02 1.250000e+02 1.500000e-01 1.524106e-01 9.972462e-02 +7.500000e+02 2.500000e+02 2.500000e+02 7.000000e-01 1.767060e-01 1.767060e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1351916/d02-x01-y02 +IsRef: 1 +Path: /REF/ATLAS_2015_I1351916/d02-x01-y02 +Title: doi:10.17182/hepdata.76996.v1/t2 Type: Scatter2D --- # xval xerr- xerr+ yval yerr- yerr+ 6.800000e+01 2.000000e+00 2.000000e+00 -1.000000e-01 3.969887e-02 4.313931e-02 7.300000e+01 3.000000e+00 3.000000e+00 -5.000000e-02 3.361547e-02 3.361547e-02 7.800000e+01 2.000000e+00 2.000000e+00 -4.000000e-02 2.701851e-02 2.624881e-02 -8.300000e+01 3.000000e+00 3.000000e+00 -2.000000e-02 1.425798e-02 1.425798e-02 +8.300000e+01 3.000000e+00 3.000000e+00 -2.000000e-02 1.342721e-02 1.342721e-02 8.700000e+01 1.000000e+00 1.000000e+00 -9.000000e-03 8.823265e-03 8.987213e-03 8.850000e+01 5.000000e-01 5.000000e-01 -3.000000e-03 4.967897e-03 5.099020e-03 8.950000e+01 5.000000e-01 5.000000e-01 6.000000e-03 4.622770e-03 4.701064e-03 9.050000e+01 5.000000e-01 5.000000e-01 1.500000e-02 5.423099e-03 5.423099e-03 9.150000e+01 5.000000e-01 5.000000e-01 2.100000e-02 5.200000e-03 5.292447e-03 9.250000e+01 5.000000e-01 5.000000e-01 3.000000e-02 7.854935e-03 7.854935e-03 9.350000e+01 5.000000e-01 5.000000e-01 4.000000e-02 1.077033e-02 1.077033e-02 9.450000e+01 5.000000e-01 5.000000e-01 6.000000e-02 1.382353e-02 1.382353e-02 9.750000e+01 2.500000e+00 2.500000e+00 8.000000e-02 1.471768e-02 1.471768e-02 1.025000e+02 2.500000e+00 2.500000e+00 9.000000e-02 2.163331e-02 2.080865e-02 1.075000e+02 2.500000e+00 2.500000e+00 8.000000e-02 3.712142e-02 3.190611e-02 1.130000e+02 3.000000e+00 3.000000e+00 1.700000e-01 3.360060e-02 3.201562e-02 1.205000e+02 4.500000e+00 4.500000e+00 1.200000e-01 3.635932e-02 3.383785e-02 -1.875000e+02 6.250000e+01 6.250000e+01 2.000000e-01 5.282509e-02 2.115396e-02 +1.875000e+02 6.250000e+01 6.250000e+01 2.000000e-01 4.987474e-02 1.937756e-02 3.750000e+02 1.250000e+02 1.250000e+02 2.000000e-01 1.524106e-01 9.972462e-02 -7.500000e+02 2.500000e+02 2.500000e+02 7.000000e-01 1.500833e-01 1.767060e-01 +7.500000e+02 2.500000e+02 2.500000e+02 7.000000e-01 1.767060e-01 1.767060e-01 END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1351916/d01-x02-y01 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1351916/d03-x01-y01 IsRef: 1 -Path: /REF/ATLAS_2015_I1351916/d01-x02-y01 -Title: ~ +Path: /REF/ATLAS_2015_I1351916/d03-x01-y01 +Title: doi:10.17182/hepdata.76996.v1/t3 Type: Scatter2D --- # xval xerr- xerr+ yval yerr- yerr+ -6.800000e+01 2.000000e+00 2.000000e+00 -2.400000e-01 8.486460e-02 7.406079e-02 -7.300000e+01 3.000000e+00 3.000000e+00 -1.900000e-01 4.313931e-02 3.310589e-02 +6.800000e+01 2.000000e+00 2.000000e+00 -3.000000e-01 8.987213e-02 6.983552e-02 +7.300000e+01 3.000000e+00 3.000000e+00 -4.000000e-01 3.969887e-02 3.310589e-02 +7.800000e+01 2.000000e+00 2.000000e+00 -2.700000e-01 4.924429e-02 3.920459e-02 +8.300000e+01 3.000000e+00 3.000000e+00 -2.100000e-01 5.000000e-02 3.130495e-02 +8.700000e+01 1.000000e+00 1.000000e+00 -1.200000e-01 3.204076e-02 2.065454e-02 +8.850000e+01 5.000000e-01 5.000000e-01 -3.800000e-02 2.666102e-02 2.471457e-02 +8.950000e+01 5.000000e-01 5.000000e-01 5.000000e-03 1.659397e-02 1.001798e-02 +9.050000e+01 5.000000e-01 5.000000e-01 3.800000e-02 1.631686e-02 1.241934e-02 +9.150000e+01 5.000000e-01 5.000000e-01 6.600000e-02 1.724558e-02 1.002846e-02 +9.250000e+01 5.000000e-01 5.000000e-01 9.600000e-02 1.739799e-02 8.363014e-03 +9.350000e+01 5.000000e-01 5.000000e-01 1.200000e-01 2.061553e-02 1.208305e-02 +9.450000e+01 5.000000e-01 5.000000e-01 1.500000e-01 2.971952e-02 1.820027e-02 +9.750000e+01 2.500000e+00 2.500000e+00 2.000000e-01 4.011683e-02 2.209887e-02 +1.025000e+02 2.500000e+00 2.500000e+00 2.800000e-01 5.661272e-02 3.106445e-02 +1.075000e+02 2.500000e+00 2.500000e+00 3.800000e-01 3.111270e-02 3.111270e-02 +1.130000e+02 3.000000e+00 3.000000e+00 4.800000e-01 4.382921e-02 2.915476e-02 +1.205000e+02 4.500000e+00 4.500000e+00 5.600000e-01 8.570298e-02 7.169379e-02 +1.875000e+02 6.250000e+01 6.250000e+01 5.000000e-01 8.154140e-02 8.154140e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1351916/d03-x01-y02 +IsRef: 1 +Path: /REF/ATLAS_2015_I1351916/d03-x01-y02 +Title: doi:10.17182/hepdata.76996.v1/t3 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +6.800000e+01 2.000000e+00 2.000000e+00 -2.400000e-01 8.987213e-02 6.983552e-02 +7.300000e+01 3.000000e+00 3.000000e+00 -1.900000e-01 3.969887e-02 3.310589e-02 7.800000e+01 2.000000e+00 2.000000e+00 -1.500000e-01 4.924429e-02 3.920459e-02 -8.300000e+01 3.000000e+00 3.000000e+00 -1.000000e-01 4.808326e-02 3.130495e-02 +8.300000e+01 3.000000e+00 3.000000e+00 -1.000000e-01 5.000000e-02 3.130495e-02 8.700000e+01 1.000000e+00 1.000000e+00 -4.000000e-02 3.204076e-02 2.065454e-02 8.850000e+01 5.000000e-01 5.000000e-01 -1.000000e-02 2.666102e-02 2.471457e-02 8.950000e+01 5.000000e-01 5.000000e-01 3.000000e-02 1.659397e-02 1.001798e-02 9.050000e+01 5.000000e-01 5.000000e-01 5.000000e-02 1.631686e-02 1.241934e-02 9.150000e+01 5.000000e-01 5.000000e-01 8.000000e-02 1.724558e-02 1.002846e-02 9.250000e+01 5.000000e-01 5.000000e-01 1.200000e-01 1.739799e-02 8.363014e-03 9.350000e+01 5.000000e-01 5.000000e-01 1.500000e-01 2.061553e-02 1.208305e-02 -9.450000e+01 5.000000e-01 5.000000e-01 1.800000e-01 3.069609e-02 1.820027e-02 -9.750000e+01 2.500000e+00 2.500000e+00 2.500000e-01 4.011683e-02 2.392405e-02 +9.450000e+01 5.000000e-01 5.000000e-01 1.800000e-01 2.971952e-02 1.820027e-02 +9.750000e+01 2.500000e+00 2.500000e+00 2.500000e-01 4.011683e-02 2.209887e-02 1.025000e+02 2.500000e+00 2.500000e+00 3.500000e-01 5.661272e-02 3.106445e-02 1.075000e+02 2.500000e+00 2.500000e+00 4.500000e-01 3.111270e-02 3.111270e-02 1.130000e+02 3.000000e+00 3.000000e+00 5.000000e-01 4.382921e-02 2.915476e-02 1.205000e+02 4.500000e+00 4.500000e+00 5.200000e-01 8.570298e-02 7.169379e-02 1.875000e+02 6.250000e+01 6.250000e+01 3.900000e-01 8.154140e-02 8.154140e-02 END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1351916/d04-x01-y01 +IsRef: 1 +Path: /REF/ATLAS_2015_I1351916/d04-x01-y01 +Title: doi:10.17182/hepdata.76996.v1/t4 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +6.800000e+01 2.000000e+00 2.000000e+00 -5.900000e-02 2.898707e-02 2.898707e-02 +7.300000e+01 3.000000e+00 3.000000e+00 -1.090000e-01 2.594224e-02 2.594224e-02 +7.800000e+01 2.000000e+00 2.000000e+00 -6.100000e-02 2.401270e-02 2.401270e-02 +8.300000e+01 3.000000e+00 3.000000e+00 -5.100000e-02 1.500000e-02 1.500000e-02 +8.700000e+01 1.000000e+00 1.000000e+00 -1.800000e-02 1.389244e-02 1.389244e-02 +8.850000e+01 5.000000e-01 5.000000e-01 -5.000000e-03 1.634778e-02 1.634778e-02 +8.950000e+01 5.000000e-01 5.000000e-01 3.000000e-03 1.137585e-02 1.234544e-02 +9.050000e+01 5.000000e-01 5.000000e-01 1.160000e-02 5.909315e-03 5.909315e-03 +9.150000e+01 5.000000e-01 5.000000e-01 1.640000e-02 2.801785e-03 2.801785e-03 +9.250000e+01 5.000000e-01 5.000000e-01 2.100000e-02 9.411164e-03 9.411164e-03 +9.350000e+01 5.000000e-01 5.000000e-01 2.800000e-02 1.431782e-02 1.431782e-02 +9.450000e+01 5.000000e-01 5.000000e-01 3.300000e-02 1.456022e-02 1.456022e-02 +9.750000e+01 2.500000e+00 2.500000e+00 5.200000e-02 1.166190e-02 1.166190e-02 +1.025000e+02 2.500000e+00 2.500000e+00 8.500000e-02 1.400143e-02 1.400143e-02 +1.075000e+02 2.500000e+00 2.500000e+00 9.000000e-02 2.401270e-02 2.395600e-02 +1.130000e+02 3.000000e+00 3.000000e+00 1.280000e-01 3.114482e-02 3.114482e-02 +1.205000e+02 4.500000e+00 4.500000e+00 1.420000e-01 2.299761e-02 2.299761e-02 +1.875000e+02 6.250000e+01 6.250000e+01 1.690000e-01 8.989438e-03 8.989438e-03 +3.750000e+02 1.250000e+02 1.250000e+02 2.600000e-01 3.101612e-02 3.101612e-02 +7.500000e+02 2.500000e+02 2.500000e+02 5.300000e-01 1.198165e-01 1.198165e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1351916/d04-x01-y02 +IsRef: 1 +Path: /REF/ATLAS_2015_I1351916/d04-x01-y02 +Title: doi:10.17182/hepdata.76996.v1/t4 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +6.800000e+01 2.000000e+00 2.000000e+00 -3.200000e-02 2.898707e-02 2.898707e-02 +7.300000e+01 3.000000e+00 3.000000e+00 -6.500000e-02 2.594224e-02 2.594224e-02 +7.800000e+01 2.000000e+00 2.000000e+00 -6.000000e-02 2.401270e-02 2.401270e-02 +8.300000e+01 3.000000e+00 3.000000e+00 -2.900000e-02 1.500000e-02 1.500000e-02 +8.700000e+01 1.000000e+00 1.000000e+00 -1.000000e-02 1.389244e-02 1.389244e-02 +8.850000e+01 5.000000e-01 5.000000e-01 -5.000000e-03 1.634778e-02 1.634778e-02 +8.950000e+01 5.000000e-01 5.000000e-01 9.000000e-03 1.137585e-02 1.234544e-02 +9.050000e+01 5.000000e-01 5.000000e-01 1.010000e-02 5.909315e-03 5.909315e-03 +9.150000e+01 5.000000e-01 5.000000e-01 1.640000e-02 2.801785e-03 2.801785e-03 +9.250000e+01 5.000000e-01 5.000000e-01 2.160000e-02 9.411164e-03 9.411164e-03 +9.350000e+01 5.000000e-01 5.000000e-01 3.100000e-02 1.431782e-02 1.431782e-02 +9.450000e+01 5.000000e-01 5.000000e-01 3.900000e-02 1.456022e-02 1.456022e-02 +9.750000e+01 2.500000e+00 2.500000e+00 5.100000e-02 1.166190e-02 1.166190e-02 +1.025000e+02 2.500000e+00 2.500000e+00 9.100000e-02 1.400143e-02 1.400143e-02 +1.075000e+02 2.500000e+00 2.500000e+00 7.300000e-02 2.401270e-02 2.401270e-02 +1.130000e+02 3.000000e+00 3.000000e+00 1.270000e-01 3.114482e-02 3.114482e-02 +1.205000e+02 4.500000e+00 4.500000e+00 1.300000e-01 2.299761e-02 2.299761e-02 +1.875000e+02 6.250000e+01 6.250000e+01 1.600000e-01 8.989438e-03 8.989438e-03 +3.750000e+02 1.250000e+02 1.250000e+02 1.790000e-01 3.101612e-02 3.101612e-02 +7.500000e+02 2.500000e+02 2.500000e+02 3.500000e-01 1.198165e-01 1.198165e-01 +END YODA_SCATTER2D_V2 diff --git a/analyses/pluginATLAS/ATLAS_2015_I1351916_EL.yoda b/analyses/pluginATLAS/ATLAS_2015_I1351916_EL.yoda deleted file mode 100644 --- a/analyses/pluginATLAS/ATLAS_2015_I1351916_EL.yoda +++ /dev/null @@ -1,55 +0,0 @@ -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1351916_EL/d01-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2015_I1351916_EL/d01-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -6.800000e+01 2.000000e+00 2.000000e+00 -1.000000e-01 3.969887e-02 4.313931e-02 -7.300000e+01 3.000000e+00 3.000000e+00 -5.000000e-02 3.361547e-02 3.361547e-02 -7.800000e+01 2.000000e+00 2.000000e+00 -4.000000e-02 2.701851e-02 2.624881e-02 -8.300000e+01 3.000000e+00 3.000000e+00 -2.000000e-02 1.425798e-02 1.425798e-02 -8.700000e+01 1.000000e+00 1.000000e+00 -9.000000e-03 8.823265e-03 8.987213e-03 -8.850000e+01 5.000000e-01 5.000000e-01 -3.000000e-03 4.967897e-03 5.099020e-03 -8.950000e+01 5.000000e-01 5.000000e-01 6.000000e-03 4.622770e-03 4.701064e-03 -9.050000e+01 5.000000e-01 5.000000e-01 1.500000e-02 5.423099e-03 5.423099e-03 -9.150000e+01 5.000000e-01 5.000000e-01 2.100000e-02 5.200000e-03 5.292447e-03 -9.250000e+01 5.000000e-01 5.000000e-01 3.000000e-02 7.854935e-03 7.854935e-03 -9.350000e+01 5.000000e-01 5.000000e-01 4.000000e-02 1.077033e-02 1.077033e-02 -9.450000e+01 5.000000e-01 5.000000e-01 6.000000e-02 1.382353e-02 1.382353e-02 -9.750000e+01 2.500000e+00 2.500000e+00 8.000000e-02 1.471768e-02 1.471768e-02 -1.025000e+02 2.500000e+00 2.500000e+00 9.000000e-02 2.163331e-02 2.080865e-02 -1.075000e+02 2.500000e+00 2.500000e+00 8.000000e-02 3.712142e-02 3.190611e-02 -1.130000e+02 3.000000e+00 3.000000e+00 1.700000e-01 3.360060e-02 3.201562e-02 -1.205000e+02 4.500000e+00 4.500000e+00 1.200000e-01 3.635932e-02 3.383785e-02 -1.875000e+02 6.250000e+01 6.250000e+01 2.000000e-01 5.282509e-02 2.115396e-02 -3.750000e+02 1.250000e+02 1.250000e+02 2.000000e-01 1.524106e-01 9.972462e-02 -7.500000e+02 2.500000e+02 2.500000e+02 7.000000e-01 1.500833e-01 1.767060e-01 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1351916_EL/d01-x02-y01 -IsRef: 1 -Path: /REF/ATLAS_2015_I1351916_EL/d01-x02-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -6.800000e+01 2.000000e+00 2.000000e+00 -2.400000e-01 8.486460e-02 7.406079e-02 -7.300000e+01 3.000000e+00 3.000000e+00 -1.900000e-01 4.313931e-02 3.310589e-02 -7.800000e+01 2.000000e+00 2.000000e+00 -1.500000e-01 4.924429e-02 3.920459e-02 -8.300000e+01 3.000000e+00 3.000000e+00 -1.000000e-01 4.808326e-02 3.130495e-02 -8.700000e+01 1.000000e+00 1.000000e+00 -4.000000e-02 3.204076e-02 2.065454e-02 -8.850000e+01 5.000000e-01 5.000000e-01 -1.000000e-02 2.666102e-02 2.471457e-02 -8.950000e+01 5.000000e-01 5.000000e-01 3.000000e-02 1.659397e-02 1.001798e-02 -9.050000e+01 5.000000e-01 5.000000e-01 5.000000e-02 1.631686e-02 1.241934e-02 -9.150000e+01 5.000000e-01 5.000000e-01 8.000000e-02 1.724558e-02 1.002846e-02 -9.250000e+01 5.000000e-01 5.000000e-01 1.200000e-01 1.739799e-02 8.363014e-03 -9.350000e+01 5.000000e-01 5.000000e-01 1.500000e-01 2.061553e-02 1.208305e-02 -9.450000e+01 5.000000e-01 5.000000e-01 1.800000e-01 3.069609e-02 1.820027e-02 -9.750000e+01 2.500000e+00 2.500000e+00 2.500000e-01 4.011683e-02 2.392405e-02 -1.025000e+02 2.500000e+00 2.500000e+00 3.500000e-01 5.661272e-02 3.106445e-02 -1.075000e+02 2.500000e+00 2.500000e+00 4.500000e-01 3.111270e-02 3.111270e-02 -1.130000e+02 3.000000e+00 3.000000e+00 5.000000e-01 4.382921e-02 2.915476e-02 -1.205000e+02 4.500000e+00 4.500000e+00 5.200000e-01 8.570298e-02 7.169379e-02 -1.875000e+02 6.250000e+01 6.250000e+01 3.900000e-01 8.154140e-02 8.154140e-02 -END YODA_SCATTER2D_V2 diff --git a/analyses/pluginATLAS/ATLAS_2015_I1351916_MU.yoda b/analyses/pluginATLAS/ATLAS_2015_I1351916_MU.yoda deleted file mode 100644 --- a/analyses/pluginATLAS/ATLAS_2015_I1351916_MU.yoda +++ /dev/null @@ -1,28 +0,0 @@ -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1351916_MU/d01-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2015_I1351916_MU/d01-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -6.800000e+01 2.000000e+00 2.000000e+00 -3.200000e-02 2.898707e-02 2.898707e-02 -7.300000e+01 3.000000e+00 3.000000e+00 -6.500000e-02 2.594224e-02 2.594224e-02 -7.800000e+01 2.000000e+00 2.000000e+00 -6.000000e-02 2.401270e-02 2.401270e-02 -8.300000e+01 3.000000e+00 3.000000e+00 -2.900000e-02 1.500000e-02 1.500000e-02 -8.700000e+01 1.000000e+00 1.000000e+00 -1.000000e-02 1.389244e-02 1.389244e-02 -8.850000e+01 5.000000e-01 5.000000e-01 -5.000000e-03 1.634778e-02 1.634778e-02 -8.950000e+01 5.000000e-01 5.000000e-01 9.000000e-03 1.137585e-02 1.234544e-02 -9.050000e+01 5.000000e-01 5.000000e-01 1.010000e-02 5.909315e-03 5.909315e-03 -9.150000e+01 5.000000e-01 5.000000e-01 1.640000e-02 2.801785e-03 2.801785e-03 -9.250000e+01 5.000000e-01 5.000000e-01 2.160000e-02 9.411164e-03 9.411164e-03 -9.350000e+01 5.000000e-01 5.000000e-01 3.100000e-02 1.431782e-02 1.431782e-02 -9.450000e+01 5.000000e-01 5.000000e-01 3.900000e-02 1.456022e-02 1.456022e-02 -9.750000e+01 2.500000e+00 2.500000e+00 5.100000e-02 1.166190e-02 1.166190e-02 -1.025000e+02 2.500000e+00 2.500000e+00 9.100000e-02 1.400143e-02 1.400143e-02 -1.075000e+02 2.500000e+00 2.500000e+00 7.300000e-02 2.401270e-02 2.401270e-02 -1.130000e+02 3.000000e+00 3.000000e+00 1.270000e-01 3.114482e-02 3.114482e-02 -1.205000e+02 4.500000e+00 4.500000e+00 1.300000e-01 2.299761e-02 2.299761e-02 -1.875000e+02 6.250000e+01 6.250000e+01 1.600000e-01 8.989438e-03 8.989438e-03 -3.750000e+02 1.250000e+02 1.250000e+02 1.790000e-01 3.101612e-02 3.101612e-02 -7.500000e+02 2.500000e+02 2.500000e+02 3.500000e-01 1.198165e-01 1.198165e-01 -END YODA_SCATTER2D_V2