# #### Repository https://github.com/BFuks/mad5-utopian-exercises The files described in this post are saved as: ```console ex1c-irelandscape/test_cms.cpp ex1c-irelandscape/saf_reader.py ex1c-irelandscape/pldoc.py ex1c-irelandscape/ex1c.py ex1c-irelandscape/xml_as_dict/ ``` #### Introduction This is my second post for providing a solution to @lemouth [third exercise](https://steemit.com/utopian-io/@lemouth/particle-physics-utopian-io-objects-isolation-histogramming-and-a-first-task-request) in his series about open-source implementation of LHC particle analysis. It contains corrections to were kindly provided by @lemouth and I hope that the new results are correct. My original answer to the exercise can be found at [here](https://steemit.com/utopian-io/@irelandscape/particle-physics-exercise-1c-solution) https://s22.postimg.cc/ye61kq2xt/brush-1356383_640.jpg [Image credits - [Pixabay](https://pixabay.com/en/brush-particles-wave-line-colorful-1356383)] ## Corrections In my previous post I wrote: > This new isolation procedure is applied to photons in the exercise and consists in calculating the sum of all transverse momenta of charged hadrons (Iπ), neutral hadrons (Iη) and photons (Iγ) within an angular distance _dR_ of the subject photon. >These sums are compared to the transverse momentum of the subject photon and if these are small enough the photon is tagged as a signal photon. **Correction:** The photon that matches the above criteria is not yet selected as a signal photon. Instead it means that the photon has been isolated. That is, it is a photon with little activity from other particles within a certain angular distance. This photon can then be further assessed to see if it should be considered as a signal photon for the analysis. --- In my original C++ code, I attempted to clean the jets from the electrons as follows: ```cpp // Remove jets electrons overlap auto cleaned_jets = PHYSICS->Isol->JetCleaning(jets, electrons, 0.2); ``` **Correction:**: This is only partly correct and @lemouth will explain the full procedure in a future post. As a result, that code is now removed. --- In my original C++ code, I tried to isolate photons using the sum of transverse momenta using the following code: ```cpp if (Igam >= (0.7 + (0.005 * photon_pt)) && In >= (1.0 + (0.04 * photon_pt)) && iPi >= 1.5 && photon.HEoverEE() < 0.05 && photon.abseta() < 1.44) { ... ``` **Correction:** The above check is incorrect. Firstly, the transverse momenta should be lower than the expression on the right of each condition. Secondly the photon itself contributes to the gamma transverse momentum so its transverse momentum should be substracted from the Igamma element. The corrected code is thus: ```cpp if ((Igam - photon_pt) < (0.7 + (0.005 * photon_pt)) && In < (1.0 + (0.04 * photon_pt)) && iPi < 1.5 && photon.HEoverEE() < 0.05 && photon.abseta() < 1.44) { ... ``` --- In my original code I added every signal jet and photon to the histograms. @lemouth asked to only add the first of each element since Madanalysis5 already provide jets and photons sorted by descending transverse momentum. The corrected code is thus: ```cpp // Extract jets (pt > 30GeV, |n| < 5) bool found = false; std::vector<RecJetFormat> signal_jets; for (auto &jet : event.rec()->jets()) { if (jet.pt() > 30 && jet.abseta() < 5) { if (!found) { Manager()->FillHisto("pt_jets", jet.pt()); Manager()->FillHisto("n_jets", jet.eta()); found = true; } signal_jets.push_back(jet); cout << "Adding jet - Pt = " << jet.pt() << ", |n| = " << jet.eta() << endl; } } ... auto photon_pt = photon.pt(); if ((Igam - photon_pt) < (0.7 + (0.005 * photon_pt)) && In < (1.0 + (0.04 * photon_pt)) && iPi < 1.5 && photon.HEoverEE() < 0.05 && photon.abseta() < 1.44) { cout << "Adding photon: Pt = " << photon_pt << ", |n| = " << photon.eta() << endl; if (!found) { Manager()->FillHisto("pt_photons", photon_pt); Manager()->FillHisto("n_photons", photon.eta()); found = true; } } } ``` ## New Result After applying the above corrections and executing the python script, the following diagrams are generated: https://s22.postimg.cc/qokux6m81/histos.png ## Conclusions I hope I have understood my mistakes and that the result is now correct. ## Resources * [# Particle physics @ utopian-io - Objects isolation, histogramming and a first task request](https://steemit.com/utopian-io/@lemouth/particle-physics-utopian-io-objects-isolation-histogramming-and-a-first-task-request) by @lemouth * [Search for new physics in the monophoton final state in proton-proton collisions at √ s = 13 TeV](https://arxiv.org/pdf/1706.03794.pdf) * [Performance of photon reconstruction and identification with the CMS detector in proton-proton collisions at √ s = 8 TeV](https://arxiv.org/pdf/1502.02702.pdf) * [Matplotlib](https://matplotlib.org). * [XML AS DICTIONARY (PYTHON RECIPE)](https://code.activestate.com/recipes/410469-xml-as-dictionary/) by Duncan McGreggor * [MadAnalysis5 Download](https://launchpad.net/madanalysis5/+download) #### Series Backlinks - [Particle Physics - @lemouth exercise 1a](https://steemit.com/utopian-io/@irelandscape/particle-physics-lemouth-exercise-1a) - [Particle physics - exercise 1b solution](https://steemit.com/utopian-io/@mactro/particle-physics-exercise-1b-solution) - [Particle physics - exercise 1c solution](https://steemit.com/utopian-io/@irelandscape/particle-physics-exercise-1c-solution)
author | irelandscape |
---|---|
permlink | particle-physics-exercise-1c-solution-corrected |
category | utopian-io |
json_metadata | {"tags":["utopian-io","blog","steemstem","programming","physics"],"users":["lemouth"],"image":["https://s22.postimg.cc/ye61kq2xt/brush-1356383_640.jpg","https://s22.postimg.cc/qokux6m81/histos.png"],"links":["https://github.com/BFuks/mad5-utopian-exercises","https://steemit.com/utopian-io/@lemouth/particle-physics-utopian-io-objects-isolation-histogramming-and-a-first-task-request","https://steemit.com/utopian-io/@irelandscape/particle-physics-exercise-1c-solution","https://pixabay.com/en/brush-particles-wave-line-colorful-1356383","https://arxiv.org/pdf/1706.03794.pdf","https://arxiv.org/pdf/1502.02702.pdf","https://matplotlib.org","https://code.activestate.com/recipes/410469-xml-as-dictionary/","https://launchpad.net/madanalysis5/+download","https://steemit.com/utopian-io/@irelandscape/particle-physics-lemouth-exercise-1a","https://steemit.com/utopian-io/@mactro/particle-physics-exercise-1b-solution"],"app":"steemit/0.1","format":"markdown"} |
created | 2018-06-27 13:27:27 |
last_update | 2018-06-27 13:27:27 |
depth | 0 |
children | 7 |
last_payout | 2018-07-04 13:27:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 15.553 HBD |
curator_payout_value | 4.711 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5,699 |
author_reputation | 15,380,678,988,494 |
root_title | "Particle physics - exercise 1c solution (CORRECTED)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 62,485,402 |
net_rshares | 8,137,961,616,593 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wackou | 0 | 81,120,708,755 | 1.07% | ||
pharesim | 0 | 83,531,862,350 | 0.03% | ||
lafona-miner | 0 | 676,794,669,818 | 20% | ||
justtryme90 | 0 | 433,785,816,166 | 20% | ||
anwenbaumeister | 0 | 46,989,195,221 | 3.59% | ||
roelandp | 0 | 77,433,853,425 | 1.79% | ||
raymondspeaks | 0 | 224,087,824 | 1.79% | ||
liberosist | 0 | 10,715,952,619 | 3.59% | ||
lemouth | 0 | 109,925,568,403 | 25% | ||
rjbauer85 | 0 | 1,256,634,719 | 20% | ||
anarchyhasnogods | 0 | 41,929,751,874 | 12% | ||
charlie777pt | 0 | 600,541,554 | 0.1% | ||
lamouthe | 0 | 5,850,131,290 | 20% | ||
lk666 | 0 | 176,240,467 | 0.35% | ||
meerkat | 0 | 19,842,770,471 | 3.94% | ||
curie | 0 | 96,595,023,301 | 3.59% | ||
yuxi | 0 | 2,945,096,659 | 10% | ||
hendrikdegrote | 0 | 1,828,303,607,586 | 3.59% | ||
vact | 0 | 59,807,186,476 | 3.59% | ||
steemstem | 0 | 610,266,974,762 | 20% | ||
sethroot | 0 | 106,647,987 | 0.35% | ||
foundation | 0 | 2,771,227,598 | 20% | ||
the-devil | 0 | 2,632,131,927 | 20% | ||
thevenusproject | 0 | 11,276,077,713 | 20% | ||
dna-replication | 0 | 5,628,557,516 | 20% | ||
steemitboard | 0 | 394,429,790 | 1% | ||
pacokam8 | 0 | 260,849,076 | 1.43% | ||
borislavzlatanov | 0 | 1,697,931,889 | 20% | ||
michelios | 0 | 589,597,987 | 0.53% | ||
awesomianist | 0 | 245,262,172 | 0.71% | ||
moksamol | 0 | 422,618,488 | 1.79% | ||
getrichordie | 0 | 134,615,456 | 1.79% | ||
thatsweeneyguy | 0 | 200,756,772 | 1.79% | ||
devi1714 | 0 | 91,139,273 | 1.79% | ||
ninyea | 0 | 114,322,412 | 3.59% | ||
jade56 | 0 | 476,587,540 | 10% | ||
eurogee | 0 | 283,713,115 | 2% | ||
kryzsec | 0 | 12,247,326,121 | 20% | ||
mys | 0 | 15,632,520,952 | 15% | ||
jakipatryk | 0 | 58,618,883,960 | 100% | ||
fredrikaa | 0 | 51,737,302,968 | 20% | ||
tantawi | 0 | 179,727,116 | 3.59% | ||
locikll | 0 | 1,493,891,756 | 7.18% | ||
dber | 0 | 3,792,703,331 | 20% | ||
mahdiyari | 0 | 12,942,476,655 | 10% | ||
anouk.nox | 0 | 2,502,814,100 | 10% | ||
aboutyourbiz | 0 | 636,557,608 | 3.59% | ||
fanstaf | 0 | 234,141,394 | 2.69% | ||
kerriknox | 0 | 16,815,453,470 | 20% | ||
alexander.alexis | 0 | 2,430,420,167 | 8% | ||
howtostartablog | 0 | 233,872,750 | 0.35% | ||
cobloc | 0 | 87,817,509 | 1.79% | ||
blessing97 | 0 | 710,126,224 | 20% | ||
orcheva | 0 | 227,829,462 | 1.79% | ||
beyondthecrypto | 0 | 98,764,553 | 1.79% | ||
saunter | 0 | 6,856,975,679 | 20% | ||
rockeynayak | 0 | 121,828,435 | 20% | ||
ertwro | 0 | 8,300,433,443 | 20% | ||
mystifact | 0 | 3,074,036,946 | 20% | ||
ludmila.kyriakou | 0 | 205,538,486 | 6% | ||
juanjdiaz89 | 0 | 229,426,195 | 20% | ||
thinknzombie | 0 | 5,396,775,029 | 1.79% | ||
nitesh9 | 0 | 5,021,690,703 | 20% | ||
fancybrothers | 0 | 3,401,519,058 | 6% | ||
nolasco | 0 | 197,103,455 | 0.17% | ||
churchboy | 0 | 3,612,877,130 | 20% | ||
howo | 0 | 17,146,432,204 | 10% | ||
himal | 0 | 1,541,806,422 | 20% | ||
nitego | 0 | 266,812,553 | 1.07% | ||
bachuslib | 0 | 18,506,040,586 | 100% | ||
neumannsalva | 0 | 348,281,705 | 1.79% | ||
abigail-dantes | 0 | 354,326,635,281 | 20% | ||
phogyan | 0 | 120,510,241 | 1.79% | ||
esteemguy | 0 | 185,308,932 | 20% | ||
suravsingh | 0 | 265,182,589 | 20% | ||
alexzicky | 0 | 2,451,444,415 | 5% | ||
mountain.phil28 | 0 | 3,613,312,211 | 25% | ||
akeelsingh | 0 | 837,673,686 | 20% | ||
mountainwashere | 0 | 8,360,310,993 | 20% | ||
tanyaschutte | 0 | 130,564,199 | 2% | ||
zest | 0 | 6,195,398,994 | 14% | ||
felixrodriguez | 0 | 610,492,963 | 10% | ||
leir | 0 | 711,279,973 | 20% | ||
masterwriter | 0 | 969,780,694 | 20% | ||
honeysara | 0 | 177,376,279 | 0.89% | ||
massivevibration | 0 | 2,201,516,127 | 5% | ||
kiriatjrb | 0 | 109,789,797 | 10% | ||
laylahsophia | 0 | 4,749,634,591 | 20% | ||
clweeks | 0 | 243,049,583 | 1.79% | ||
torico | 0 | 359,134,028 | 0.17% | ||
damzxyno | 0 | 92,221,017 | 4% | ||
birgitt | 0 | 133,077,960 | 3.59% | ||
mayowadavid | 0 | 932,887,554 | 10% | ||
imamalkimas | 0 | 99,827,242 | 3.59% | ||
zeeshan003 | 0 | 198,129,108 | 20% | ||
emdesan | 0 | 430,322,273 | 10% | ||
peaceandwar | 0 | 486,779,166 | 1.79% | ||
enzor | 0 | 341,925,422 | 10% | ||
pratik27 | 0 | 798,904,160 | 10% | ||
rogeviolinista | 0 | 119,536,628 | 10% | ||
carloserp-2000 | 0 | 4,949,206,247 | 20% | ||
rachelsmantra | 0 | 858,236,329 | 20% | ||
gra | 0 | 7,023,049,484 | 20% | ||
utopian-io | 0 | 3,058,799,731,353 | 1.99% | ||
tfcoates | 0 | 451,499,567 | 5% | ||
sci-guy | 0 | 55,596,631 | 20% | ||
janine-ariane | 0 | 474,853,995 | 5% | ||
drmake | 0 | 1,239,744,325 | 0.71% | ||
eleonardo | 0 | 61,003,794 | 2% | ||
amestyj | 0 | 121,840,585 | 20% | ||
vinxy | 0 | 97,514,508 | 20% | ||
skycae | 0 | 439,779,600 | 3.59% | ||
one-person | 0 | 532,148,452 | 0.53% | ||
steemitstats | 0 | 3,283,537,380 | 5% | ||
physics.benjamin | 0 | 362,463,619 | 20% | ||
kenadis | 0 | 5,663,876,927 | 20% | ||
esaia.mystic | 0 | 200,112,771 | 3.59% | ||
amavi | 0 | 3,123,437,227 | 4% | ||
florae | 0 | 1,118,759,323 | 20% | ||
robotics101 | 0 | 838,654,003 | 16% | ||
tristan-muller | 0 | 130,053,037 | 20% | ||
mactro | 0 | 1,987,411,189 | 100% | ||
fejiro | 0 | 198,195,279 | 10% | ||
aamin | 0 | 389,947,864 | 10% | ||
trishy | 0 | 64,598,259 | 5% | ||
sco | 0 | 2,102,373,963 | 4% | ||
adetola | 0 | 1,889,257,878 | 20% | ||
anikekirsten | 0 | 886,614,250 | 3.59% | ||
rharphelle | 0 | 1,507,425,878 | 25% | ||
dysfunctional | 0 | 1,142,367,840 | 10% | ||
rasamuel | 0 | 87,455,767 | 1.79% | ||
stahlberg | 0 | 624,250,426 | 1.79% | ||
cordeta | 0 | 78,299,167 | 1.79% | ||
r351574nc3 | 0 | 1,026,289,159 | 3% | ||
shoganaii | 0 | 895,335,967 | 10% | ||
laritheghost | 0 | 146,752,240 | 1.79% | ||
whileponderin | 0 | 1,681,760,694 | 20% | ||
jlmol7 | 0 | 91,272,920 | 20% | ||
hadji | 0 | 731,911,506 | 20% | ||
sakura1012 | 0 | 811,763,177 | 20% | ||
fth | 0 | 2,078,942,635 | 100% | ||
fidelpoet | 0 | 81,653,660 | 3.59% | ||
terrylovejoy | 0 | 3,131,987,008 | 6% | ||
wisewoof | 0 | 156,462,630 | 1.79% | ||
saunter-pl | 0 | 406,252,912 | 20% | ||
olajidekehinde | 0 | 345,629,655 | 10% | ||
real2josh | 0 | 203,135,950 | 10% | ||
iamfo | 0 | 97,465,700 | 1.79% | ||
steepup | 0 | 304,699,445 | 8% | ||
mrday | 0 | 520,484,847 | 1.79% | ||
debbietiyan | 0 | 110,416,224 | 1.79% | ||
emirfirlar | 0 | 96,822,753 | 1.79% | ||
rionpistorius | 0 | 87,506,676 | 10% | ||
steem-hikers | 0 | 376,869,647 | 20% | ||
kingabesh | 0 | 620,290,983 | 10% | ||
didic | 0 | 670,848,911 | 1.79% | ||
operahoser | 0 | 82,669,834 | 0.39% | ||
wdoutjah | 0 | 262,832,666 | 1.79% | ||
kelos | 0 | 344,614,215 | 10% | ||
dexterdev | 0 | 1,713,412,603 | 20% | ||
nwjordan | 0 | 572,384,187 | 3.59% | ||
ugonma | 0 | 930,742,895 | 20% | ||
ajpacheco1610 | 0 | 281,496,464 | 10% | ||
marketstack | 0 | 6,585,518,394 | 0.85% | ||
alexdory | 0 | 8,543,512,327 | 20% | ||
liberviarum | 0 | 3,660,097,561 | 100% | ||
benleemusic | 0 | 1,555,648,311 | 0.35% | ||
charitybot | 0 | 12,941,648,559 | 100% | ||
procrastilearner | 0 | 43,962,154,301 | 100% | ||
jbrrd | 0 | 147,381,138 | 15% | ||
christianunger | 0 | 107,499,332 | 1.79% | ||
chimtivers96 | 0 | 217,025,185 | 3.59% | ||
amirdesaingrafis | 0 | 100,264,684 | 1.79% | ||
erikklok | 0 | 1,617,724,387 | 100% | ||
joelagbo | 0 | 644,645,734 | 20% | ||
anyes2013 | 0 | 258,955,140 | 10% | ||
salty-mcgriddles | 0 | 833,520,186 | 2% | ||
spederson | 0 | 437,683,900 | 18% | ||
theunlimited | 0 | 67,905,648 | 10% | ||
cryptoitaly | 0 | 963,953,643 | 10% | ||
lionindayard | 0 | 2,107,492,443 | 0.85% | ||
effofex | 0 | 5,532,238,177 | 100% | ||
mrbreeziewrites | 0 | 1,408,535,619 | 20% | ||
de-stem | 0 | 8,499,286,932 | 18% | ||
derbesserwisser | 0 | 4,847,599,648 | 25% | ||
serylt | 0 | 3,056,644,698 | 16% | ||
yann85 | 0 | 413,598,252 | 12% | ||
misia1979 | 0 | 84,803,854 | 1.79% | ||
ari16 | 0 | 134,759,710 | 10% | ||
qurator-tier-0 | 0 | 5,511,136,756 | 1% | ||
event-horizon | 0 | 202,069,105 | 20% | ||
charitymemes | 0 | 1,163,161,176 | 100% | ||
michaelwrites | 0 | 198,600,395 | 10% | ||
apteacher | 0 | 123,797,555 | 0.71% | ||
chloroform | 0 | 3,523,150,654 | 20% | ||
vanessahampton | 0 | 1,207,783,241 | 10% | ||
albatar | 0 | 413,151,545 | 25% | ||
thesteemmustflow | 0 | 138,695,876 | 0.71% | ||
temitayo-pelumi | 0 | 1,324,806,968 | 20% | ||
qberryfarms | 0 | 97,475,532 | 1.79% | ||
dick.sledge | 0 | 6,360,335,537 | 0.85% | ||
marcuz | 0 | 110,448,252 | 1.79% | ||
niouton | 0 | 259,476,133 | 0.71% | ||
soundworks | 0 | 68,625,710 | 2.78% | ||
beautyinscience | 0 | 61,251,219 | 10% | ||
medicnet | 0 | 91,874,936 | 20% | ||
communityisyou | 0 | 91,874,936 | 20% | ||
andykon | 0 | 581,918,941 | 100% | ||
moreone | 0 | 581,918,941 | 100% | ||
techupdate | 0 | 104,274,823 | 1.79% | ||
elliygova | 0 | 581,912,633 | 100% | ||
dinsipov00 | 0 | 581,912,633 | 100% | ||
biomimi | 0 | 226,385,612 | 40% | ||
ibk-gabriel | 0 | 171,179,013 | 10% | ||
assaulenko | 0 | 581,912,633 | 100% | ||
drsensor | 0 | 437,624,538 | 12.5% | ||
bountyx2 | 0 | 581,912,633 | 100% | ||
fischkopp | 0 | 76,662,774 | 3.59% | ||
mahmudulhassan | 0 | 80,094,770 | 1.79% | ||
actmoo | 0 | 581,918,941 | 100% | ||
purelyscience | 0 | 99,241,828 | 10% | ||
danilkramov | 0 | 581,912,633 | 100% | ||
billycrou | 0 | 581,912,633 | 100% | ||
astrophoto.kevin | 0 | 1,566,807,488 | 10% | ||
dusterdeciles | 0 | 584,285,020 | 100% | ||
gazegamete | 0 | 581,915,937 | 100% | ||
grandiosetucana | 0 | 581,912,633 | 100% | ||
kind-sir | 0 | 64,922,355 | 2% | ||
babinetgout | 0 | 581,912,633 | 100% | ||
call-me-howie | 0 | 1,196,077,628 | 1.79% | ||
hansmast | 0 | 337,108,838 | 1.79% | ||
gatis-photo | 0 | 68,827,584 | 2% | ||
testomilian | 0 | 67,270,726 | 10.8% | ||
olgalestova | 0 | 572,769,719 | 100% | ||
romansilenkov | 0 | 572,769,719 | 100% | ||
pollfullscreen | 0 | 572,769,719 | 100% | ||
drinkschin | 0 | 572,769,719 | 100% | ||
dotfanning | 0 | 572,769,719 | 100% | ||
nasturtiumfatty | 0 | 572,769,719 | 100% | ||
somalianfog | 0 | 572,769,719 | 100% | ||
snailrepeat | 0 | 572,769,719 | 100% | ||
lowreject | 0 | 572,769,719 | 100% | ||
gcsethy | 0 | 572,769,719 | 100% | ||
amusingbun | 0 | 572,769,719 | 100% | ||
mr-hades | 0 | 559,965,063 | 100% | ||
algerianhaunt | 0 | 572,769,719 | 100% | ||
looseapplet | 0 | 572,769,719 | 100% | ||
searchmalt | 0 | 572,769,719 | 100% | ||
glassescuckoo | 0 | 572,769,719 | 100% | ||
oxbowworship | 0 | 572,769,719 | 100% | ||
yendart | 0 | 572,769,719 | 100% | ||
ceruleanblue | 0 | 563,339,444 | 100% | ||
fuzzythumb | 0 | 534,085,934 | 100% | ||
techkajadi | 0 | 121,899,266 | 20% | ||
up-quark | 0 | 4,533,331,791 | 20% |
Hi. Thank you for the contribution. You've created your own repository to solve the exercises proposed by lemouth, but is clear that your post is promoting the [MadAnalysis 5 framework](https://github.com/BFuks/madanalysis-utopian). For this reason, I think that you should add the MadAnalysis 5 framework repository in the first sections of your posts, instead the [https://github.com/BFuks/mad5-utopian-exercises](https://github.com/BFuks/mad5-utopian-exercises) repository, and, obviously, add the links to your own repository with the exercises solution in the sections that you consider it necessary. It's great to find this kind of contributions here and see the way that lemouth is supporting the contributors and participants in the project, this is an open learning process that allows many things to be clear to the readers. This post can be considered an extension of your previous post, [Particle physics - exercise 1c solution](https://steemit.com/utopian-io/@irelandscape/particle-physics-exercise-1c-solution), so considering that it's about corrections of your previous proposal, and that the volume of work in this post is minor, the score for this post will be a bit lower. Thank you for your efforts and keep up the good work. Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category. To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/1/33431324). ---- Need help? Write a ticket on https://support.utopian.io/. Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | kit.andres |
---|---|
permlink | re-irelandscape-particle-physics-exercise-1c-solution-corrected-20180628t194308239z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://github.com/BFuks/madanalysis-utopian","https://github.com/BFuks/mad5-utopian-exercises","https://steemit.com/utopian-io/@irelandscape/particle-physics-exercise-1c-solution","https://join.utopian.io/guidelines","https://review.utopian.io/result/1/33431324","https://support.utopian.io/","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2018-06-28 19:43:09 |
last_update | 2018-06-28 19:43:51 |
depth | 1 |
children | 0 |
last_payout | 2018-07-05 19:43:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,741 |
author_reputation | 31,454,326,251,184 |
root_title | "Particle physics - exercise 1c solution (CORRECTED)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 62,655,746 |
net_rshares | 0 |
Thanks for implementing he corrections. Strangely enough, the plotter is still not working. The error this time is still related to the format of the file (only svg seem to be allowed). Moreover, I have just noticed that `exo1c.py --help` returns a crash. Could you please update this? Thanks in advance! I also think you forgot to commit the new code ;)
author | lemouth |
---|---|
permlink | re-irelandscape-particle-physics-exercise-1c-solution-corrected-20180628t215212998z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-06-28 21:52:15 |
last_update | 2018-06-28 21:52:15 |
depth | 1 |
children | 2 |
last_payout | 2018-07-05 21:52:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 357 |
author_reputation | 338,011,164,701,274 |
root_title | "Particle physics - exercise 1c solution (CORRECTED)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 62,665,795 |
net_rshares | 0 |
Indeed I did forget to commit the changes. Everything should be committed now.
author | irelandscape |
---|---|
permlink | re-lemouth-re-irelandscape-particle-physics-exercise-1c-solution-corrected-20180629t083441751z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-06-29 08:34:42 |
last_update | 2018-06-29 08:34:42 |
depth | 2 |
children | 1 |
last_payout | 2018-07-06 08:34:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 78 |
author_reputation | 15,380,678,988,494 |
root_title | "Particle physics - exercise 1c solution (CORRECTED)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 62,715,269 |
net_rshares | 0 |
Excellent! I now agree with your code :)
author | lemouth |
---|---|
permlink | re-irelandscape-re-lemouth-re-irelandscape-particle-physics-exercise-1c-solution-corrected-20180702t083736454z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-07-02 08:37:36 |
last_update | 2018-07-02 08:37:45 |
depth | 3 |
children | 0 |
last_payout | 2018-07-09 08:37:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 40 |
author_reputation | 338,011,164,701,274 |
root_title | "Particle physics - exercise 1c solution (CORRECTED)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,103,722 |
net_rshares | 0 |
Congratulations @irelandscape! You have completed some achievement on Steemit and have been rewarded with new badge(s) : [](http://steemitboard.com/@irelandscape) Award for the number of comments <sub>_Click on the badge to view your Board of Honor._</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> To support your work, I also upvoted your post! **Do not miss the [last post](https://steemit.com/steemitboard/@steemitboard/steemitboard-world-cup-contest-results-of-day-14) from @steemitboard!** --- **Participate in the [SteemitBoard World Cup Contest](https://steemit.com/steemitboard/@steemitboard/steemitboard-world-cup-contest-collect-badges-and-win-free-sbd)!** Collect World Cup badges and win free SBD Support the Gold Sponsors of the contest: [@good-karma](https://v2.steemconnect.com/sign/account-witness-vote?witness=good-karma&approve=1) and [@lukestokes](https://v2.steemconnect.com/sign/account-witness-vote?witness=lukestokes.mhth&approve=1) --- > Do you like [SteemitBoard's project](https://steemit.com/@steemitboard)? Then **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
author | steemitboard |
---|---|
permlink | steemitboard-notify-irelandscape-20180628t131920000z |
category | utopian-io |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2018-06-28 13:19:18 |
last_update | 2018-06-28 13:19:18 |
depth | 1 |
children | 0 |
last_payout | 2018-07-05 13:19:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,339 |
author_reputation | 38,975,615,169,260 |
root_title | "Particle physics - exercise 1c solution (CORRECTED)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 62,616,034 |
net_rshares | 0 |
Congratulations @irelandscape! You have completed some achievement on Steemit and have been rewarded with new badge(s) : [](http://steemitboard.com/@irelandscape) Award for the number of upvotes <sub>_Click on the badge to view your Board of Honor._</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> **Do not miss the [last post](https://steemit.com/steemitboard/@steemitboard/steemitboard-world-cup-contest-croatia-vs-denmark) from @steemitboard!** --- **Participate in the [SteemitBoard World Cup Contest](https://steemit.com/steemitboard/@steemitboard/steemitboard-world-cup-contest-collect-badges-and-win-free-sbd)!** Collect World Cup badges and win free SBD Support the Gold Sponsors of the contest: [@good-karma](https://v2.steemconnect.com/sign/account-witness-vote?witness=good-karma&approve=1) and [@lukestokes](https://v2.steemconnect.com/sign/account-witness-vote?witness=lukestokes.mhth&approve=1) --- > Do you like [SteemitBoard's project](https://steemit.com/@steemitboard)? Then **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
author | steemitboard |
---|---|
permlink | steemitboard-notify-irelandscape-20180701t051014000z |
category | utopian-io |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2018-07-01 05:10:12 |
last_update | 2018-07-01 05:10:12 |
depth | 1 |
children | 0 |
last_payout | 2018-07-08 05:10:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,287 |
author_reputation | 38,975,615,169,260 |
root_title | "Particle physics - exercise 1c solution (CORRECTED)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 62,951,630 |
net_rshares | 0 |
Hey @irelandscape **Thanks for contributing on Utopian**. We’re already looking forward to your next contribution! **Want to chat? Join us on Discord https://discord.gg/h52nFrV.** <a href='https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
author | utopian-io |
---|---|
permlink | re-particle-physics-exercise-1c-solution-corrected-20180701t033509z |
category | utopian-io |
json_metadata | "{"app": "beem/0.19.29"}" |
created | 2018-07-01 03:35:09 |
last_update | 2018-07-01 03:35:09 |
depth | 1 |
children | 0 |
last_payout | 2018-07-08 03:35:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 304 |
author_reputation | 152,955,367,999,756 |
root_title | "Particle physics - exercise 1c solution (CORRECTED)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 62,944,244 |
net_rshares | 0 |