create account

Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer by lemouth

View this thread on: hive.blogpeakd.comecency.com
· @lemouth · (edited)
$226.71
Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer
<div class="text-justify">

In order to allow Utopian contributors to design LHC analysis codes that could be helpful to particle physics, it is first necessary to explain what one detects in a collider experiment such as those ongoing at the [**Large Hadron Collider**](https://home.cern/topics/large-hadron-collider) (the LHC) at [**CERN**](http://cern.ch). In addition, it is also needed to be able to link those [**detectable physics objects**](https://steemit.com/steemstem/@lemouth/ppcc7-basic-principles-for-detecting-elementary-particles-with-onions) to **the manner to implement and use them in the** [**MadAnalysis 5 platform**](https://launchpad.net/madanalysis5) that we plan to use (that is also mirrored on [**GitHub**](https://github.com/BFuks/madanalysis-utopian)). 

<div class="pull-left">

<center> <img src="https://s17.postimg.org/xg9j5bu1b/lhctunnel.jpg">
<sub>[image credits: <a href="https://home.cern/topics/large-hadron-collider">CERN</a>]</sub> </center> 
</div>

This post thus consists in the **step 1a** of the roadmap sketched [**here**](https://steemit.com/utopian-io/@lemouth/towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started). 

I decided to split the initial step 1 into several parts, as I prefer to move slowly and strongly instead of quickly and unreliably. 

Each post will hence go straight to one specific point instead of plenty of them. I want to somehow make sure that everyone follows.

<br />

They are **several classes of objects that are reconstructed in a typical LHC detector**. They are classified through **six containers in the MadAnalysis 5 framework** (we will focus on only three of them today). 

The handling of those objects is crucial for the rest of this project, and I will therefore propose a series of programming exercises accompanying my posts to facilitate their usage (in a way in which one understands what one is doing). I believe those exercises are important for a better handling of the next more complicated (at least from the physics standpoint) steps.

I invite all the participants to **publish the pieces of code solving the exercises on Utopian**. Please make sure to tag me either directly on the post or on discord. My discord username is lemouth#8260, and I can be found both on the [**steemstem**](https://discord.gg/9c7pKVD) and [**utopian**](https://discord.gg/58nhyJ4) discord servers. Without such a mention, I may just miss your post :/

I am obviously available for questions (both on discord and in the comment section of this article).
___

## PARTICLE DETECTION AT THE LHC IN A NUTSHELL ##

In a particle collision such as those on-going at the LHC, many particles are produced. 

**Some of them can reach the material of the detectors unaltered**, so that they can interact with it. This leaves signals that allow physicists to infer the presence of these particles (through an often complex electronic apparatus). This is what we call **stable particles,** as they are stable on detector time scales.

<div class="pull-right">

<center> <img src="https://s13.postimg.org/70b49cvqf/ggmel.jpg">
<sub>[image credits: <a href="https://home.cern/fr/about/updates/2015/06/seeing-invisible-event-displays-particle-physics">CERN</a>]</sub> </center> 
</div>

The second class of objects that can be reconstructed in a detector are what we call **jets of strongly-interacting particles**, or simply jets. 

The strong interaction is one of the three fundamental interactions and it plays a key role at the LHC. It indeed governs the LHC collision processes from almost *A* to *Z*. 

Of course, we are here more interested in the *Z* side, that tells us that **any produced strongly-interacting particle always leads to a jet made of many of them**.

I will skip any extra detail for today; I hope to have been clear enough in a small amount of words. But please do not worry, I will come back to this very soon.

The last class of objects that can be reconstructed in a detector consists of **unstable particles**. As their name suggest it, those particles decay, almost instantaneously and through a sometimes complicated process, into stable particles and/or jets. 

Therefore, one cannot detect them, and only **the analysis of the properties of the observed final-state particles allows to infer their initial presence**.

And of course, we are also capable to **detect the invisible**… This may be seen as a fourth class of observable objects (yes, really!) in the detector records of any LHC collision: the **missing energy**.
___

## THE STRUCTURE OF A MADANALYSIS 5 ANALYSIS ##

<div class="pull-left">

<center> <img src="http://madanalysis.irmp.ucl.ac.be/chrome/site/MA5.jpg">
<sub>[image credits: <a href="https://launchpad.net/madanalysis5">MadAnalsysis 5</a>]</sub> </center> 
</div>

It is now time to make a parallel with the MadAnalysis 5 framework. 

Instead of providing a full manual that one may have forgotten before starting anything more concrete, I will instead be practical and proceed with a series of well defined exercises, closely linking physics to coding.

**One given collision recorded in a detector is called an event**. Correspondingly, the corresponding object in the MadAnalysis 5 framework is called ```event```. 

The LHC analyses that will be implemented within this Utopian project hence consist in C++ codes allowing to process the information included in an entire sample of ```event``` objects, representing what could really happen in thousands of LHC collisions.

In practice, the task that will be assigned to the contributors will be to compute quantities that will allow one to make decisions about how to treat an event. One indeed needs to decide if one needs to reject an event (because it is found boring) or to keep it for further investigations (as a source of a potentially interesting phenomenon).

<br />

<div class="pull-right">

<center> <img src="https://s31.postimg.cc/68onamorv/prog.jpg">
<sub>[image credits: <a href="https://pixabay.com/en/matrix-technology-data-digital-3408060/">Pixabay</a> (CC0)]</sub> </center> 
</div>

In order to start, one should go to the directory in which MadAnalysis 5 has been installed (see [**here**](https://steemit.com/utopian-io/@lemouth/towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started) for the installation instructions) and then type, in a shell,

```./bin/ma5 -E test_folder test_analysis```

This leads to the creation of a folder named ```test_folder``` in which we will code a toy analysis (*i.e.* the exercise to be done in this post).

The file to modify to this end is
   ```   test_folder/Build/SampleAnalyzer/User/Analyzer/test_analysis.cpp```
The code inside it contains three methods named ```Initialize```, ```Execute``` and ```Finalize```. In this post, we are only interested in modifying the ```Execute``` method.

If one looks into that ```test_analysis.cpp``` file and in the template for the ```Execute``` method, one can observe that it takes an ```event``` object in argument,
```
   bool test_analysis::Execute(SampleFormat& sample, const EventFormat& event)
   {
      …
   }
```
One will hence have to implement a code processing the attributes of this ```event``` object. 
___

## STABLE PARTICLES  ##

<div class="pull-left">

<center> <img src="https://s7.postimg.org/5xjw0h9m3/ligt.jpg">
<sub>[image credits: <a href="https://commons.wikimedia.org/wiki/File:Staccoto_Lightning.jpg">Wikimedia</a>]</sub> </center> 
</div>

The first category of particles that I want to focus on consists in the set of particles that are stable from the point of view of a typical LHC detector. 

This means that once produced, these particles will just fly until they meet the material of the detector itself.

At that moment, they will interact with this material and **leave tracks and/or energy deposits from which physicists will be able to deduce their presence and measure their properties**.

There are three of these particles: **[electrons](https://en.wikipedia.org/wiki/Electron), [muons](https://en.wikipedia.org/wiki/Muon) and [photons](https://en.wikipedia.org/wiki/Photon)** (as well as the associated antiparticles). In other words, **these objects are observed as such** and can be reconstructed (with a given efficiency) almost straightforwardly from all their hits in the detector.

All the physics objects that are reconstructed in an event can be accessed through the ```event``` object attached to each collision event:
 - electrons are stored in the ```event.rec()->electrons()``` container;
 - muons are stored in the ```event.rec()->muons()``` container;
 - photons are stored in the ```event.rec()->photons()``` container.

Kind of straightforward isn’t it? **The three above C++ objects are vectors of special objects with given properties**. The study of these properties will be the topic of the next post (this one is already way too long), as well as the investigation of any other type of objects recorded in a detector.

But in short, one can implement a loop over these vectors like for any c++ vector,
```
   for(unsigned int ii=0; ii<event.rec()->electrons().size(); ii++)
   {
      …
   }
```
___

## THE EXERCISE ##

Let us first play a little bit with electrons, photons and muons. As I do no know the level of the participants to this project, I propose a super easy exercise. For more complicated things, please stay tuned! :)

1. Download a sample of **10 simulated LHC collisions** from [**here**](http://madanalysis.irmp.ucl.ac.be/raw-attachment/wiki/MA5PublicSandBox/tth_aa.root). This file has been generated by means of the Delphes program that has been installed together with MadAnalysis 5, under the [**root**](https://root.cern.ch/) format (also installed last week). I repeat that information on the installation procedure can be found [**here**](https://steemit.com/utopian-io/@lemouth/towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started).

2. Edit the file ```test_folder/Build/SampleAnalyzer/User/Analyzer/test_analysis.cpp``` and implement a piece of code in the ```Execute``` function allowing for the evaluation of the numbers of photons, electrons and muons present in each event. Following Utopian guidelines, I am expecting all codes to be stored on [**github**](https://github.com/).

3. Compile the code and generate an executable by typing
   ```
   cd test_folder/Build
   source setup.sh
   make
   ```

4. Create the (text) file ```test_folder/Input/tth_aa.list``` and indicate in it the absolute path to the downloaded event file (the location of the ```tth_aa.root``` file on the local machine).

5. Execute the code
   ```
   cd test_folder/Build;
   ./MadAnalysis5job ../Input/tth_aa.list
   ```

6. Please provide the answer to the question raised in point 2.

Don’t hesitate to write a post presenting and detailing your code allowing to get to the answer. Please do not forget to mention me directly within your post, so that I could easily find it. 

I also kindly ask to commit the c++ source file to [**this GitHub repository**](https://github.com/BFuks/mad5-utopian-exercises) repository so that it would be easier for me to double check what has been done. Please follow the following syntax for the filename:
```ex1a-<steemitID>.cpp```

I fix the deadline to Wednesday May 30th, 16:00 UTC (I repeat, this exercise is easy). Then we will move on with the next step.

#### After this easy warm-up, things will get harder and more interesting next week! Remember, the goal is to implement a particle physics analysis such as those really performed at the LHC at CERN!
___

### STEEMSTEM ###

SteemSTEM is a community-driven project that now runs on Steem for more than 1.5 year. We seek to build a community of science lovers and to make the Steem blockchain a better place for Science Technology Engineering and Mathematics (STEM).

More information can be found on the **@steemstem** blog, on our [**discord server**](https://discord.gg/Ph2beq) and in our last [**project report**](https://steemit.com/steemstem/@steemstem/steemstem-winter-2017-2018-project-update). Please also have a look on [**this post**](https://steemit.com/steemstem/@steemstem/rebooting-steemstem-towards-an-engaged-community-on-the-steem-blockchain) for what concerns the building of our community.

</div>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 527 others
properties (23)
authorlemouth
permlinkparticle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer
categoryutopian-io
json_metadata{"tags":["utopian-io","blog","steemstem","science","physics"],"users":["steemstem"],"image":["https://s17.postimg.org/xg9j5bu1b/lhctunnel.jpg","https://s13.postimg.org/70b49cvqf/ggmel.jpg","http://madanalysis.irmp.ucl.ac.be/chrome/site/MA5.jpg","https://s31.postimg.cc/68onamorv/prog.jpg","https://s7.postimg.org/5xjw0h9m3/ligt.jpg"],"links":["https://home.cern/topics/large-hadron-collider","http://cern.ch","https://steemit.com/steemstem/@lemouth/ppcc7-basic-principles-for-detecting-elementary-particles-with-onions","https://launchpad.net/madanalysis5","https://github.com/BFuks/madanalysis-utopian","https://steemit.com/utopian-io/@lemouth/towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started","https://discord.gg/9c7pKVD","https://discord.gg/58nhyJ4","https://home.cern/fr/about/updates/2015/06/seeing-invisible-event-displays-particle-physics","https://pixabay.com/en/matrix-technology-data-digital-3408060/","https://commons.wikimedia.org/wiki/File:Staccoto_Lightning.jpg","https://en.wikipedia.org/wiki/Electron","https://en.wikipedia.org/wiki/Muon","https://en.wikipedia.org/wiki/Photon","http://madanalysis.irmp.ucl.ac.be/raw-attachment/wiki/MA5PublicSandBox/tth_aa.root","https://root.cern.ch/","https://github.com/","https://github.com/BFuks/mad5-utopian-exercises","https://discord.gg/Ph2beq","https://steemit.com/steemstem/@steemstem/steemstem-winter-2017-2018-project-update","https://steemit.com/steemstem/@steemstem/rebooting-steemstem-towards-an-engaged-community-on-the-steem-blockchain"],"app":"steemit/0.1","format":"markdown"}
created2018-05-24 13:34:36
last_update2018-05-26 09:00:54
depth0
children81
last_payout2018-05-31 13:34:36
cashout_time1969-12-31 23:59:59
total_payout_value178.289 HBD
curator_payout_value48.426 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12,370
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,458,088
net_rshares60,197,750,556,688
author_curate_reward""
vote details (591)
@bakhtiarzehri ·
$0.02
@lemouth wounder full contribution you have contributed by @utopian-io .
In the core of my heart your work is appropriate.
👍  ,
properties (23)
authorbakhtiarzehri
permlinkre-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180524t172616251z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["lemouth","utopian-io"],"app":"steemit/0.1"}
created2018-05-24 17:26:33
last_update2018-05-24 17:26:33
depth1
children1
last_payout2018-05-31 17:26:33
cashout_time1969-12-31 23:59:59
total_payout_value0.017 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation719,109,823,653
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,493,819
net_rshares6,188,536,729
author_curate_reward""
vote details (2)
@lemouth ·
Thanks a lot for your hearty comment :)
properties (22)
authorlemouth
permlinkre-bakhtiarzehri-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180524t225451312z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 22:54:51
last_update2018-05-24 22:54:51
depth2
children0
last_payout2018-05-31 22:54:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,536,122
net_rshares0
@cariglee ·
love to read it about this.
properties (22)
authorcariglee
permlinkre-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180524t161332663z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 16:13:33
last_update2018-05-24 16:13:33
depth1
children1
last_payout2018-05-31 16:13:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation53,107,619,101
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,483,064
net_rshares0
@lemouth ·
I guess I should say "Thanks!". I am not sure to fully get the comment, sorry ;)
properties (22)
authorlemouth
permlinkre-cariglee-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180524t225922249z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 22:59:24
last_update2018-05-24 22:59:24
depth2
children0
last_payout2018-05-31 22:59:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,536,662
net_rshares0
@cyprianj ·
This is becoming more Interesting, been following the article relating to this LHC.  This was really quite explanatory and muxh easier to comprehend . I hope to understand better as times go on with your next post. 
Great work @lemouth
👍  
properties (23)
authorcyprianj
permlinkre-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180524t161942784z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["lemouth"],"app":"steemit/0.1"}
created2018-05-24 16:19:48
last_update2018-05-24 16:19:48
depth1
children1
last_payout2018-05-31 16:19:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length235
author_reputation75,398,556,172,423
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,484,045
net_rshares5,242,086,555
author_curate_reward""
vote details (1)
@lemouth · (edited)
Thanks! The next post will address the points mentioned here and still obscure. And of course include one more exercise ;)
properties (22)
authorlemouth
permlinkre-cyprianj-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180524t230350713z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 23:03:51
last_update2018-05-24 23:04:00
depth2
children0
last_payout2018-05-31 23:03:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,537,214
net_rshares0
@dannybravo94 ·
Fabulous post @lemouth

I like the way you broke it down: i look forward to reading your next post
👍  
properties (23)
authordannybravo94
permlinkre-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180525t134810725z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["lemouth"],"app":"steemit/0.1"}
created2018-05-25 13:48:24
last_update2018-05-25 13:48:24
depth1
children1
last_payout2018-06-01 13:48:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length98
author_reputation564,370,009,565
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,640,478
net_rshares5,242,086,555
author_curate_reward""
vote details (1)
@lemouth ·
Thanks! :)
properties (22)
authorlemouth
permlinkre-dannybravo94-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180525t192731644z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-25 19:27:39
last_update2018-05-25 19:27:39
depth2
children0
last_payout2018-06-01 19:27:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,689,872
net_rshares0
@deboas ·
J’espère qu’il va y avoir une traduction en Français pour bientôt. C’est trop technique pour moi et mon petit niveau d’anglais.
👍  
properties (23)
authordeboas
permlinkre-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180526t181205080z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-26 18:12:06
last_update2018-05-26 18:12:06
depth1
children1
last_payout2018-06-02 18:12:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length127
author_reputation3,561,442,938,423
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,837,098
net_rshares5,274,200,990
author_curate_reward""
vote details (1)
@lemouth ·
Malheureusement non, car ce projet est integralement en anglais. Mais je pourrai traduire le cours d'introduction a la physique des particules que j'ai ecrit pour Steem [ici](https://steemit.com/steemstem/@lemouth/some-thoughts-about-stem-on-steem-bonus-a-complete-introduction-to-particle-physics). Cela fait d'ailleurs longtepms que je n'ai pas poste en francais :)
properties (22)
authorlemouth
permlinkre-deboas-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180526t224022406z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://steemit.com/steemstem/@lemouth/some-thoughts-about-stem-on-steem-bonus-a-complete-introduction-to-particle-physics"],"app":"steemit/0.1"}
created2018-05-26 22:40:21
last_update2018-05-26 22:40:21
depth2
children0
last_payout2018-06-02 22:40:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length367
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,866,132
net_rshares0
@effofex ·
$0.06
>  Following Utopian guidelines, I am expecting all codes to be stored on github.

I'm assuming you mean just the modifications to ``` test_analysis.cpp``` and not the whole of Mad5, right?
👍  
properties (23)
authoreffofex
permlinkre-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180524t222826904z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 22:28:27
last_update2018-05-24 22:28:27
depth1
children3
last_payout2018-05-31 22:28:27
cashout_time1969-12-31 23:59:59
total_payout_value0.049 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length189
author_reputation14,429,105,750,792
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,532,971
net_rshares15,726,259,666
author_curate_reward""
vote details (1)
@ecoman1 ·
just now.....................................
properties (22)
authorecoman1
permlinkre-effofex-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180525t165929330z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-25 16:59:33
last_update2018-05-25 16:59:33
depth2
children1
last_payout2018-06-01 16:59:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation3,594,222,183
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,669,452
net_rshares0
@lemouth ·
Just now what?
properties (22)
authorlemouth
permlinkre-ecoman1-re-effofex-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180525t190932886z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-25 19:09:33
last_update2018-05-25 19:09:33
depth3
children0
last_payout2018-06-01 19:09:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,687,591
net_rshares0
@lemouth ·
Exactly. There is no need to modify madanalysis 5 at all!
properties (22)
authorlemouth
permlinkre-effofex-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180524t225215040z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 22:52:15
last_update2018-05-24 22:52:15
depth2
children0
last_payout2018-05-31 22:52:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,535,819
net_rshares0
@eurogee · (edited)
$0.04
Hello @lemouth

Many Commendations on this latest endeavor you are engineering to engender community interest in. You are such a great community builder. After  months of dedicated work to popularize @steemstem and make it an undisputed destination for STEM enthusiasts, you are directing your attention to utopia to engineer a novel project for particle-physicists and programmers alike. This is worthy of commendation and community support to say the least.

I wish I were skilled in things of this nature, I would have been the first to partake in this educative exercise. 

I pry you get massive support in this. 

Thanks for being a true Steemian. The community appreciate you. 

@eurogee of @euronation community
👍  ,
properties (23)
authoreurogee
permlinkre-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180524t135655767z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["lemouth","steemstem","eurogee","euronation"],"app":"steemit/0.1"}
created2018-05-24 13:56:57
last_update2018-05-24 13:59:30
depth1
children2
last_payout2018-05-31 13:56:57
cashout_time1969-12-31 23:59:59
total_payout_value0.031 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length718
author_reputation38,260,360,943,030
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,461,409
net_rshares11,002,844,075
author_curate_reward""
vote details (2)
@lemouth ·
Thanks for this very nice message @eurogee! ;)
properties (22)
authorlemouth
permlinkre-eurogee-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180524t225048682z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["eurogee"],"app":"steemit/0.1"}
created2018-05-24 22:50:51
last_update2018-05-24 22:50:51
depth2
children1
last_payout2018-05-31 22:50:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,535,652
net_rshares0
@eurogee ·
✌️
properties (22)
authoreurogee
permlinkre-lemouth-re-eurogee-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180524t235557024z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 23:55:54
last_update2018-05-24 23:55:54
depth3
children0
last_payout2018-05-31 23:55:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2
author_reputation38,260,360,943,030
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,542,900
net_rshares0
@french-tech ·
$0.04
Une sacrée bonne idée et un bel exemple de démocratisation de la science rendu possible grâce à l'avancé des technologies. Le contre pied parfait à cette vague de désapprentissage des connaissances sévissant de nos jours en utilisant les mêmes armes, bravo!
👍  
properties (23)
authorfrench-tech
permlinkre-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180524t231455197z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"}
created2018-05-24 23:14:57
last_update2018-05-24 23:14:57
depth1
children1
last_payout2018-05-31 23:14:57
cashout_time1969-12-31 23:59:59
total_payout_value0.027 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length257
author_reputation10,920,316,584,102
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,538,474
net_rshares10,484,173,111
author_curate_reward""
vote details (1)
@lemouth ·
Oui c'est aussi la conclusion a laquelle on est arrivee il y a 2 ans: afin de combattre les informations antiscience ou pseudoscience que l'on trouve partout (en particulier sur internet), il vaut mieux promouvoir et supporter le raisonnable afin de lui donner plus de visibilite.  On est passe par le nombre dans tous les cas, donc ca ne peut etre que la seule chose a faire :)
👍  
properties (23)
authorlemouth
permlinkre-french-tech-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180525t055845073z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-25 05:58:51
last_update2018-05-25 05:58:51
depth2
children0
last_payout2018-06-01 05:58:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length378
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,582,257
net_rshares561,419,524
author_curate_reward""
vote details (1)
@greenrun ·
Well, this is the beginning of a fantastic project. I'm happy I was here when it all started.
👍  
properties (23)
authorgreenrun
permlinkre-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180524t175434452z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 17:54:42
last_update2018-05-24 17:54:42
depth1
children1
last_payout2018-05-31 17:54:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length93
author_reputation38,837,562,295,457
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,497,791
net_rshares5,242,086,555
author_curate_reward""
vote details (1)
@lemouth ·
Let's see now how it will evolve :)
properties (22)
authorlemouth
permlinkre-greenrun-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180524t231640796z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 23:16:42
last_update2018-05-24 23:16:42
depth2
children0
last_payout2018-05-31 23:16:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,538,678
net_rshares0
@irelandscape ·
$0.25
Thanks for the instructions @lemouth. I'll give it a shot shortly.

Just for clarity should we create our own individual project on GitHub for this exercise and future ones?

Also, I haven't used utopian before. Should we register this GitHub project on utopian?

Thanks.
👍  
properties (23)
authorirelandscape
permlinkre-lemouth-2018524t195831375z
categoryutopian-io
json_metadata{"tags":["utopian-io","task-development","blog","steemstem","science"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"}
created2018-05-24 18:58:33
last_update2018-05-24 18:58:33
depth1
children1
last_payout2018-05-31 18:58:33
cashout_time1969-12-31 23:59:59
total_payout_value0.185 HBD
curator_payout_value0.067 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length271
author_reputation15,380,678,988,494
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,506,700
net_rshares73,389,211,777
author_curate_reward""
vote details (1)
@lemouth · (edited)
I think this is the easiest thing to do. I could follow what contributors do on github, as well as on the blockchain through the associated posts that may be written.

On your personal side, you can create a github account and create one new project in there, that will contain  your contribution to the MadAnalysis public analysis database. Since this corresponds to the only files you will modify (actually create) by yourself, it is fine (you will not have to touch madanalysis 5 itself, but only an external file that will be used by the platform for physics (if successfully coded at the end of the day).

I hope this clarifies :)
properties (22)
authorlemouth
permlinkre-irelandscape-re-lemouth-2018524t195831375z-20180524t231404774z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 23:14:06
last_update2018-05-24 23:14:18
depth2
children0
last_payout2018-05-31 23:14:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length635
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,538,368
net_rshares0
@irelandscape ·
$5.61
OK, I created the following github project:
https://github.com/irelandscape/cern_contributions

The resulting output is:
<pre>
root@lhc:~/cern_contributions/exercises/1a/test_folder/Build# ./MadAnalysis5job ../Input/tth_aa.list 2>&1 > result.txt
Error in cling::AutoloadingVisitor::InsertIntoAutoloadingState:
   Missing FileEntry for ExRootAnalysis/ExRootTreeReader.h
   requested to autoload type ExRootTreeReader
Error in cling::AutoloadingVisitor::InsertIntoAutoloadingState:
   Missing FileEntry for ExRootAnalysis/ExRootTreeWriter.h
   requested to autoload type ExRootTreeWriter
Error in cling::AutoloadingVisitor::InsertIntoAutoloadingState:
   Missing FileEntry for ExRootAnalysis/ExRootTreeBranch.h
   requested to autoload type ExRootTreeBranch
Error in cling::AutoloadingVisitor::InsertIntoAutoloadingState:
   Missing FileEntry for ExRootAnalysis/ExRootResult.h
   requested to autoload type ExRootResult
Error in cling::AutoloadingVisitor::InsertIntoAutoloadingState:
   Missing FileEntry for ExRootAnalysis/ExRootClassifier.h
   requested to autoload type ExRootClassifier
Error in cling::AutoloadingVisitor::InsertIntoAutoloadingState:
   Missing FileEntry for ExRootAnalysis/ExRootFilter.h
   requested to autoload type ExRootFilter
Error in cling::AutoloadingVisitor::InsertIntoAutoloadingState:
   Missing FileEntry for ExRootAnalysis/ExRootProgressBar.h
   requested to autoload type ExRootProgressBar
Error in cling::AutoloadingVisitor::InsertIntoAutoloadingState:
   Missing FileEntry for ExRootAnalysis/ExRootConfReader.h
   requested to autoload type ExRootConfParam
Error in cling::AutoloadingVisitor::InsertIntoAutoloadingState:
   Missing FileEntry for ExRootAnalysis/ExRootConfReader.h
   requested to autoload type ExRootConfReader
Error in cling::AutoloadingVisitor::InsertIntoAutoloadingState:
   Missing FileEntry for ExRootAnalysis/ExRootTask.h
   requested to autoload type ExRootTask
        => progress: [===>                               ]
Photons: 3, Electrons: 0, Muons: 0

        => progress: [======>                            ]
Photons: 3, Electrons: 0, Muons: 0

        => progress: [==========>                        ]
Photons: 3, Electrons: 2, Muons: 1

        => progress: [=============>                     ]
Photons: 1, Electrons: 0, Muons: 1

        => progress: [=================>                 ]
Photons: 4, Electrons: 0, Muons: 0

        => progress: [====================>              ]
Photons: 3, Electrons: 0, Muons: 1

        => progress: [========================>          ]
Photons: 4, Electrons: 0, Muons: 0

        => progress: [===========================>       ]
Photons: 4, Electrons: 1, Muons: 0

        => progress: [===============================>   ]
Photons: 3, Electrons: 0, Muons: 0

        => progress: [==================================>]
Photons: 6, Electrons: 1, Muons: 0

        => progress: [===================================]
</pre>
👍  ,
properties (23)
authorirelandscape
permlinkre-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180525t064655504z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://github.com/irelandscape/cern_contributions"],"app":"steemit/0.1"}
created2018-05-25 06:46:33
last_update2018-05-25 06:46:33
depth1
children5
last_payout2018-06-01 06:46:33
cashout_time1969-12-31 23:59:59
total_payout_value4.206 HBD
curator_payout_value1.399 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2,934
author_reputation15,380,678,988,494
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,587,488
net_rshares1,484,369,133,099
author_curate_reward""
vote details (2)
@mactro ·
$0.05
Did you run `thisroot.sh` before creating the test directory? If not, I think it may be the cause of your errors.
👍  ,
properties (23)
authormactro
permlinkre-irelandscape-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180525t094944256z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-25 09:49:45
last_update2018-05-25 09:49:45
depth2
children3
last_payout2018-06-01 09:49:45
cashout_time1969-12-31 23:59:59
total_payout_value0.039 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length113
author_reputation865,272,238,829
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,609,175
net_rshares13,507,505,953
author_curate_reward""
vote details (2)
@irelandscape ·
Yes, I did. The errors don't seem to prevent the program from running but I'm not sure if there will be side effects.
properties (22)
authorirelandscape
permlinkre-mactro-re-irelandscape-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180525t124618611z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-25 12:46:18
last_update2018-05-25 12:46:18
depth3
children0
last_payout2018-06-01 12:46:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length117
author_reputation15,380,678,988,494
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,631,544
net_rshares0
@irelandscape ·
I've created a post to track this:
https://steemit.com/utopian-io/@irelandscape/particle-physics-lemouth-exercise-1a
👍  
properties (23)
authorirelandscape
permlinkre-mactro-re-irelandscape-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180525t134217370z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://steemit.com/utopian-io/@irelandscape/particle-physics-lemouth-exercise-1a"],"app":"steemit/0.1"}
created2018-05-25 13:42:18
last_update2018-05-25 13:42:18
depth3
children0
last_payout2018-06-01 13:42:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length116
author_reputation15,380,678,988,494
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,639,514
net_rshares5,242,086,555
author_curate_reward""
vote details (1)
@lemouth · (edited)
@mactro @irelandscape: The errors are related to an incompatibility connected to delphes. But this  does not prevent the code from running.
properties (22)
authorlemouth
permlinkre-mactro-re-irelandscape-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180525t191206149z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mactro","irelandscape"],"app":"steemit/0.1"}
created2018-05-25 19:12:09
last_update2018-05-25 19:13:33
depth3
children0
last_payout2018-06-01 19:12:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length139
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,687,946
net_rshares0
@utopian-io ·
Hey @irelandscape
Here's a tip for your valuable feedback! @Utopian-io loves and incentivises informative comments.

**Contributing on Utopian**
Learn how to contribute on <a href="https://join.utopian.io">our website</a>.

**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>
properties (22)
authorutopian-io
permlink20180526t085303521z
categoryutopian-io
json_metadata{"tags":["utopian.tip"],"app":"utopian-io"}
created2018-05-26 08:53:03
last_update2018-05-26 08:53:03
depth2
children0
last_payout2018-06-02 08:53:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length412
author_reputation152,955,367,999,756
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,770,709
net_rshares0
@mactro ·
Exercise done! Can't wait for more :)
👍  
properties (23)
authormactro
permlinkre-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180525t075954520z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-25 07:59:54
last_update2018-05-25 07:59:54
depth1
children1
last_payout2018-06-01 07:59:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation865,272,238,829
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,595,720
net_rshares5,242,086,555
author_curate_reward""
vote details (1)
@lemouth ·
I will have a look. This was an easy warmup :)
properties (22)
authorlemouth
permlinkre-mactro-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180525t191822109z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-25 19:18:30
last_update2018-05-25 19:18:30
depth2
children0
last_payout2018-06-01 19:18:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,688,725
net_rshares0
@mafi001 ·
i support you man for your activity.
properties (22)
authormafi001
permlinkre-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180524t163025132z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 16:30:27
last_update2018-05-24 16:30:27
depth1
children1
last_payout2018-05-31 16:30:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation125,101,813,059
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,485,627
net_rshares0
@lemouth ·
Thanks for your support!
properties (22)
authorlemouth
permlinkre-mafi001-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180524t231616007z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 23:16:18
last_update2018-05-24 23:16:18
depth2
children0
last_payout2018-05-31 23:16:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,538,623
net_rshares0
@mal2 ·
Exellent post
properties (22)
authormal2
permlinkre-lemouth-2018524t221359974z
categoryutopian-io
json_metadata{"tags":["utopian-io","task-development","blog","steemstem","science"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"}
created2018-05-24 15:14:21
last_update2018-05-24 15:14:21
depth1
children2
last_payout2018-05-31 15:14:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation-9,151,209,511
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,473,401
net_rshares0
@lemouth ·
Excellent comment I would say...
properties (22)
authorlemouth
permlinkre-mal2-re-lemouth-2018524t221359974z-20180524t225707410z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 22:57:09
last_update2018-05-24 22:57:09
depth2
children0
last_payout2018-05-31 22:57:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,536,398
net_rshares0
@spaminator ·
$0.79
[Source]()
Generic comments could be mistaken for spam.  

More information: 
[The Art of Commenting](https://steemit.com/steemcleaners/@steemcleaners/the-art-of-commenting)
[Comment Classifications](https://steemcleaners.org/comment-classifications/)

👍  ,
properties (23)
authorspaminator
permlinkre-mal2-re-lemouth-2018524t221359974z-20180527t190336714z
categoryutopian-io
json_metadata{"app":"steemcleaners/0.2","format":"markdown+html","community":"steemcleaners"}
created2018-05-27 19:03:36
last_update2018-05-27 19:03:36
depth2
children0
last_payout2018-06-03 19:03:36
cashout_time1969-12-31 23:59:59
total_payout_value0.659 HBD
curator_payout_value0.130 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length259
author_reputation68,078,150,632,608
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,990,705
net_rshares201,295,161,163
author_curate_reward""
vote details (2)
@rogueofoz ·
Thank you for the explanation, we often see the things physicist do on the particle colider, and what are their findings but we fail to realize the theory behind it
👍  
properties (23)
authorrogueofoz
permlinkre-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180524t150802534z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 15:08:06
last_update2018-05-24 15:08:06
depth1
children1
last_payout2018-05-31 15:08:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length164
author_reputation291,941,064,665
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,472,398
net_rshares5,242,086,555
author_curate_reward""
vote details (1)
@lemouth ·
Physics consists in what lies behind the key principle of particle accelerators and searches at the LHC. A bunch of key ideas put all together and we can try to understand better how our universe works :)
properties (22)
authorlemouth
permlinkre-rogueofoz-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180524t231550723z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 23:15:51
last_update2018-05-24 23:15:51
depth2
children0
last_payout2018-05-31 23:15:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length204
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,538,577
net_rshares0
@roj · (edited)
$6.13
Before anything else, thank you so much for contributing by sharing the series of posts and allowing developers to getting involved in such a great project. As I said before, I will  take part in the process as long as I have time to work on. 

Considering the post quality, the contribution is one of the best in the category, and it is staff picked because of the obvious reasons. 

To assure the Utopian submission standards, I would like to see you edit the post for specifying the GitHub repository of the project. After creation of the mirror repository, I couldn't find the link to the repository in the post. If I am the one missing it, please do not mind this.

As my most important suggestion about the contribution, I think it would be really nice to see related posts within a section, containing series of links to the prior posts. 

Your contribution has been evaluated according to [Utopian rules and guidelines](https://utopian.io/rules), 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/11121112)

---- 
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/)
👍  , ,
properties (23)
authorroj
permlinkre-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180526t102237158z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://utopian.io/rules","https://review.utopian.io/result/1/11121112","https://support.utopian.io/","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"}
created2018-05-26 10:22:39
last_update2018-05-26 13:09:15
depth1
children2
last_payout2018-06-02 10:22:39
cashout_time1969-12-31 23:59:59
total_payout_value4.599 HBD
curator_payout_value1.528 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,321
author_reputation12,636,295,215,793
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,779,868
net_rshares1,585,754,710,499
author_curate_reward""
vote details (3)
@lemouth ·
Thanks for the comment. I hope you will manage to free some time (at some point) :)


> To assure the Utopian submission standards, I would like to see you edit the post for specifying the GitHub repository of the project. After creation of the mirror repository, I couldn't find the link to the repository in the post. If I am the one missing it, please do not mind this.

I added the two links roughly 6-7 hours ago. The mirror link is given in the first paragraph and the contributor link is given in the exercise section. You may just have missed them ;)

> As my most important suggestion about the contribution, I think it would be really nice to see related posts within a section, containing series of links to the prior posts.

This is a good idea. I was in fact considering adding them, but then I forgot as several hours happened between the moment I started to write and the moment I finished the text... I will add all of this right now.

Thanks for the support in all cases :)
properties (22)
authorlemouth
permlinkre-roj-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180526t152218018z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-26 15:22:21
last_update2018-05-26 15:22:21
depth2
children0
last_payout2018-06-02 15:22:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length990
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,814,850
net_rshares0
@utopian-io ·
Hey @roj
Here's a tip for your valuable feedback! @Utopian-io loves and incentivises informative comments.

**Contributing on Utopian**
Learn how to contribute on <a href="https://join.utopian.io">our website</a>.

**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>
👍  
properties (23)
authorutopian-io
permlink20180526t175127661z
categoryutopian-io
json_metadata{"tags":["utopian.tip"],"app":"utopian-io"}
created2018-05-26 17:51:27
last_update2018-05-26 17:51:27
depth2
children0
last_payout2018-06-02 17:51:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length403
author_reputation152,955,367,999,756
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,834,521
net_rshares102,929,967
author_curate_reward""
vote details (1)
@samminator ·
$0.03
This is just step 1a, and it's already filled with some much details and fun. Now my interest has been piqued to see more steps.
I believe this project will work  out fine.

Big-up sire
👍  ,
properties (23)
authorsamminator
permlinkre-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180525t202734978z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-25 20:18:12
last_update2018-05-25 20:18:12
depth1
children20
last_payout2018-06-01 20:18:12
cashout_time1969-12-31 23:59:59
total_payout_value0.023 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length185
author_reputation663,264,549,351,389
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,695,901
net_rshares7,558,434,547
author_curate_reward""
vote details (2)
@lemouth ·
Will you try it? :)
properties (22)
authorlemouth
permlinkre-samminator-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180526t152312260z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-26 15:23:15
last_update2018-05-26 15:23:15
depth2
children19
last_payout2018-06-02 15:23:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,814,981
net_rshares0
@samminator ·
Sure I would like to try it.
I'm coupling the stages together. I've already bookmarked this post and the last one. So I can read them through again. To grasp more info.

First of all, I would start by running a linux emulator on my windows pc. Then I'll install the madanalysis. 
Which Linux emulator would you recommend?
properties (22)
authorsamminator
permlinkre-lemouth-re-samminator-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180526t182652730z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-26 18:17:06
last_update2018-05-26 18:17:06
depth3
children18
last_payout2018-06-02 18:17:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length321
author_reputation663,264,549,351,389
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,837,806
net_rshares0
@star-vc ·
$0.04
Hi @lemouth! Loved your article of the step 1a about Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer.

Can you please explain me about > 'muons that are stored in event.rec()->muons() container'. I basically don't know about it and I will love to learn about it from you. :)
👍  
properties (23)
authorstar-vc
permlinkre-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180529t082809696z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["lemouth"],"app":"steemit/0.1"}
created2018-05-29 08:03:33
last_update2018-05-29 08:03:33
depth1
children3
last_payout2018-06-05 08:03:33
cashout_time1969-12-31 23:59:59
total_payout_value0.031 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length324
author_reputation4,445,845,212,884
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,239,162
net_rshares10,555,915,080
author_curate_reward""
vote details (1)
@lemouth ·
This container is a c++ vector. Each element of this vector is a muon. You can see this vector as the ensemble of the c++ representations of all the muons present in a simulated collision.

Does it clarify it?
👍  
properties (23)
authorlemouth
permlinkre-star-vc-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180530t092346030z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-30 09:23:45
last_update2018-05-30 09:23:45
depth2
children2
last_payout2018-06-06 09:23:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length209
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,414,028
net_rshares1,583,445,141
author_curate_reward""
vote details (1)
@star-vc ·
Thanks for helping me out to know about this! :)
I got it now!! :)
properties (22)
authorstar-vc
permlinkre-lemouth-re-star-vc-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180530t112847988z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-30 11:04:21
last_update2018-05-30 11:04:21
depth3
children1
last_payout2018-06-06 11:04:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation4,445,845,212,884
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,424,014
net_rshares0
@steepup ·
Well done @lemouth . This is a great project. I think it will go a long way in the history of particle physics. Meanwhile, I think I got something interesting in the initial part of the post. That is the different class of particles
I. Stable particles
II.Jets of strongly-interacting particles
III.Unstable particles.
IV.Detect the invisible 
More strength.
👍  
properties (23)
authorsteepup
permlinkre-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180524t194147603z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"}
created2018-05-24 19:42:00
last_update2018-05-24 19:42:00
depth1
children2
last_payout2018-05-31 19:42:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length358
author_reputation34,185,245,135,219
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,512,348
net_rshares5,242,086,555
author_curate_reward""
vote details (1)
@lemouth · (edited)
Thanks! I will come back to the second, third and fourth category in the next post. Please stay tuned :)
properties (22)
authorlemouth
permlinkre-steepup-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180524t230611299z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 23:06:12
last_update2018-05-24 23:06:21
depth2
children1
last_payout2018-05-31 23:06:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length104
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,537,476
net_rshares0
@steepup ·
Alright
properties (22)
authorsteepup
permlinkre-lemouth-re-steepup-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180525t115213994z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-25 11:52:39
last_update2018-05-25 11:52:39
depth3
children0
last_payout2018-06-01 11:52:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation34,185,245,135,219
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,624,103
net_rshares0
@stembuzz ·
$0.04
>Some of them can reach the material of the detectors unaltered, so that they can interact with it. 

This sounds like electrons leaving their valence shell, not too much i learnt about  LHC detector but i know the little knowledge i got from this article will play out well for me in the future. THANK YOU @lemouth
👍  
properties (23)
authorstembuzz
permlinkre-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180524t141151719z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["lemouth"],"app":"steemit/0.1"}
created2018-05-24 14:11:54
last_update2018-05-24 14:11:54
depth1
children1
last_payout2018-05-31 14:11:54
cashout_time1969-12-31 23:59:59
total_payout_value0.027 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length315
author_reputation505,538,689,026
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,463,773
net_rshares10,484,173,111
author_curate_reward""
vote details (1)
@lemouth ·
In this case, electrons are in fact produced not from atoms, but either from the annihilation or the decay of other particles. I hope this clarifies.
properties (22)
authorlemouth
permlinkre-stembuzz-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180524t230530729z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 23:05:30
last_update2018-05-24 23:05:30
depth2
children0
last_payout2018-05-31 23:05:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length149
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,537,395
net_rshares0
@tsoldovieri ·
Particle Physics is a very interesting area where numerous studies are currently carried out. Excellent post @lemouth. Regards.
👍  
properties (23)
authortsoldovieri
permlinkre-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180525t095446060z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["lemouth"],"app":"steemit/0.1"}
created2018-05-25 09:54:51
last_update2018-05-25 09:54:51
depth1
children1
last_payout2018-06-01 09:54:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length127
author_reputation13,553,154,839,000
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,609,817
net_rshares5,242,086,555
author_curate_reward""
vote details (1)
@lemouth ·
Yep,  thousands of studies a year (I don't read all of them... :) )
properties (22)
authorlemouth
permlinkre-tsoldovieri-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180525t192618291z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-25 19:26:21
last_update2018-05-25 19:26:21
depth2
children0
last_payout2018-06-01 19:26:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,689,697
net_rshares0
@tulio77 ·
Up lemouth!
properties (22)
authortulio77
permlinkre-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180524t214900191z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 21:49:06
last_update2018-05-24 21:49:06
depth1
children1
last_payout2018-05-31 21:49:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation85,248,278,232
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id57,527,958
net_rshares0
@lemouth ·
Thank you!
properties (22)
authorlemouth
permlinkre-tulio77-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180524t231044640z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 23:10:45
last_update2018-05-24 23:10:45
depth2
children0
last_payout2018-05-31 23:10:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,537,989
net_rshares0
@ugonma · (edited)
Well written and explained @lemouth, more grease to your elbow for trying to educate people, really hope the Utopian community will appreciate your effort and contribute to make the community better
👍  
properties (23)
authorugonma
permlinkre-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180524t141353018z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["lemouth"],"app":"steemit/0.1"}
created2018-05-24 14:13:54
last_update2018-05-24 14:15:12
depth1
children1
last_payout2018-05-31 14:13:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length198
author_reputation1,940,796,990,605
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,464,135
net_rshares5,242,086,555
author_curate_reward""
vote details (1)
@lemouth ·
I really hope this project will work. This is step 1 (a). Let's see whether this will work. More from me in a week from now ;)
properties (22)
authorlemouth
permlinkre-ugonma-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180524t225535594z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 22:55:36
last_update2018-05-24 22:55:36
depth2
children0
last_payout2018-05-31 22:55:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length126
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,536,213
net_rshares0
@utopian-io ·
$0.06
Hey @lemouth
**Thanks for contributing on Utopian**.
Congratulations! Your contribution was Staff Picked to receive a maximum vote for the blog category on Utopian for being of significant value to the project and the open source community.

We’re already looking forward to your next contribution!

**Contributing on Utopian**
Learn how to contribute on <a href='https://join.utopian.io'>our website</a> or by watching <a href='https://www.youtube.com/watch?v=8S1AtrzYY1Q'>this tutorial</a> on Youtube.

**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>
👍  ,
properties (23)
authorutopian-io
permlinkre-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180526t100010z
categoryutopian-io
json_metadata"{"app": "beem/0.19.29"}"
created2018-05-26 10:00:12
last_update2018-05-26 10:00:12
depth1
children1
last_payout2018-06-02 10:00:12
cashout_time1969-12-31 23:59:59
total_payout_value0.047 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length693
author_reputation152,955,367,999,756
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,777,586
net_rshares15,852,170,204
author_curate_reward""
vote details (2)
@lemouth ·
Thanks for the support :)
properties (22)
authorlemouth
permlinkre-utopian-io-re-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180526t100010z-20180526t152602102z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-26 15:26:03
last_update2018-05-26 15:26:03
depth2
children0
last_payout2018-06-02 15:26:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length25
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,815,384
net_rshares0
@yann85 ·
Very nice ;-)
properties (22)
authoryann85
permlinkre-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180526t211613733z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"}
created2018-05-26 21:16:15
last_update2018-05-26 21:16:15
depth1
children1
last_payout2018-06-02 21:16:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation1,143,565,610,559
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,857,462
net_rshares0
@lemouth ·
Indeed ^^
properties (22)
authorlemouth
permlinkre-yann85-re-lemouth-particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer-20180526t224043062z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-26 22:40:42
last_update2018-05-26 22:40:42
depth2
children0
last_payout2018-06-02 22:40:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation338,011,164,701,274
root_title"Particle physics @ Utopian - Detecting particles at colliders and implementing this on a computer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,866,164
net_rshares0