create account

Particle physics @ utopian-io - Objects isolation, histogramming and a first task request by lemouth

View this thread on: hive.blogpeakd.comecency.com
· @lemouth · (edited)
$128.64
Particle physics @ utopian-io - Objects isolation, histogramming and a first task request
<div class="text-justify">

This series of posts aims to offer a way to developers to contribute to state-of-the-art research in particle physics through the reimplementation, in the [**MadAnalysis 5 framework**](https://github.com/BFuks/madanalysis-utopian), of existing searches for new phenomena at the [**Large Hadron Collider**](https://home.cern/topics/large-hadron-collider), the LHC, at [**CERN**](https://home.cern/). 

The grand goal of this project is to extend the [**MadAnalysis 5 Public Analysis Database**](http://madanalysis.irmp.ucl.ac.be/wiki/PublicAnalysisDatabase). The analyses included in this database are used by particle physicists to assess **how given new particle physics theories are compatible with the observations at the LHC**.

<div class="pull-left">

<center> <img src="https://s33.postimg.cc/aukqi3p3z/cms_again.png">
<sub>[image credits: <a href="https://commons.wikimedia.org/wiki/File:Ev059HR_3D.png">Pcharito</a> (CC BY-SA 3.0)]</sub> </center> 
</div>

Among all the concepts introduced so far (please have a look to the end of this post for a table of content), the most important one consists in the **notion of events**.

**An event can be seen as a record in an LHC detector**, originating either from a real collision or from a simulation.

Roughly speaking, such events contain **a set of objects** reconstructed from various hits and tracks left in the detector.

<br />

We have for now discussed four of these objects, namely **photons, electrons, muons and jets**. In parallel with the physics, we have also detailed **how to access those objects and their properties in the MadAnalysis 5 framework**.

At the end of the [**last episode of this series**](https://steemit.com/utopian-io/@lemouth/particle-physics-utopian-implementing-an-lhc-analysis-on-a-computer-the-physics-objects), we have introduced the **removal of the potential overlap between different objects**. 

In this post, we will move on with **object isolation**, and then tackle a totally different topic and discuss how the MadAnalysis 5 framework can be used for **histogramming**. In other word, I will describe how to focus on a specific property (of an object or even the entire event) and represent it in a figure (a histogram).

This post will end up with a traditional exercise. We will today, for a change, focus on a search for [**dark matter**](https://steemit.com/steemstem/@lemouth/dark-matter-from-its-origins-to-its-freeze-out) performed by the [**CMS collaboration**](https://cms.cern). 

**A first task request will also be proposed, targeting the development of a new add-on to MadAnalysis 5**.
___


## SUMMARY OF THE PREVIOUS EPISODES ##

<div class="pull-right">

<center> <img src="https://s33.postimg.cc/604tozacf/analysis.jpg">
<sub>[image credits: <a href="https://pixabay.com/en/analysis-statistics-chart-graphic-810025/">geralt</a> (CC0)]</sub> </center> 
</div>

In the [**first post on this project**](https://steemit.com/utopian-io/@lemouth/towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started) I explained how the MadAnalysis 5 framework could be downloaded from [**LaunchPad**](https://launchpad.net/madanalysis5) or [**GitHub**](https://github.com/BFuks/madanalysis-utopian).

Moreover, I have also detailed how any necessary external dependencies could be downloaded and linked.

In the next two posts ([**here**](https://steemit.com/utopian-io/@lemouth/particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer) and [**there**](https://steemit.com/utopian-io/@lemouth/particle-physics-utopian-implementing-an-lhc-analysis-on-a-computer-the-physics-objects)), we have started dealing with the real work.

I have discussed in some details the nature of **four of the different classes of objects that could be reconstructed** from the information stored in a detector. Together with their representation in the MadAnalysis 5 data format, those are:
 - Electrons, that can be accessed through ```event.rec()->electrons()```, that is a vector of ```RecLeptonFormat``` objects.
 - Muons, that can be accessed through ```event.rec()->muons()```, that is a vector of ```RecLeptonFormat``` objects.
 - Photons, that can be accessed through ```event.rec()->photons()```, that is a vector of ```RecPhotonFormat``` objects.
 - Jets, that can be accessed through ```event.rec()->jets()```, that is a vector of ```RecJetFormat``` objects.

We have in parallel started to investigate the **main properties of those objects** (let us take a generic one called ```object```), namely their transverse momentum (```object.pt()```), transverse energy (```object.et()```) and their pseudorapidity (```object.eta()``` or ```object.abseta()``` for its absolute value). 

The **transverse momentum** is related to the component of the motion of the object that is transverse to the collision axis. Similarly, the **transverse energy** consists in the energy deposited transversely to the same axis, and the **pseudorapidity** describes the object direction with respect to the collision axis.

Because of the remnants of the colliding protons, anything parallel to the collision direction is too messy to get any useful information out of it. For this reason, one restricts the analysis to what is going on in the **transverse plane**.

In addition, I have introduced the **angular distance between two objects** ```object1``` and ```object2``` (```object1.dr(object2)```) that allows us to assess how the two objects are separated from each other. This allows to lift any potential double counting occurring when the same detector signature is tagged as more than one object.

Along these lines, it is good to know that MadAnalysis 5 works in such a way that **one must always remove the overlap between electrons and jets**. Assuming that one has a jet collection named ```MyJets``` and an electron collection named ```MyElectrons```, one must include into the code:
```
   MyJets  = PHYSICS->Isol->JetCleaning(MyJets,  MyElectrons, 0.2);
```
This automatically clean the jet collection from any electron candidate. 
___

## ISOLATION ##

The identification, or reconstruction, of the physics objects leaving tracks in a detector is crucial. Any analysis is indeed based on imposing some requirements on those reconstructed objects, so that **identifying good-quality reconstructed object** is therefore crucial. 

For this quality reason, one often requires the objects of interest to be **well separated from each other**. In other words, one imposes some **isolation criteria**. 

One easy way to implement object isolation is to rely on the **angular distance between different objects**. For instance, we may impose that no object is reconstructed at a given angular distance of a specific object of interest. Implementing such an isolation is easily doable with the methods yielding **object overlap removal** (see my [**previous post**](https://steemit.com/utopian-io/@lemouth/particle-physics-utopian-implementing-an-lhc-analysis-on-a-computer-the-physics-objects)).

<div class="pull-left">

<center> <img src="https://s33.postimg.cc/586r3pqfz/collhc.jpg">
<sub> [image credits: <a href="https://www.flickr.com/photos/ronin691/4285125507">Todd Barnard</a> (CC BY-SA 2.0)]</sub> </center> 
</div>

However, there is another, very widely used, way. Let us take for instance this [**CMS search for dark matter**](https://arxiv.org/abs/1706.03794). This analysis relies on the presence of an **isolated photon**. 

Such an isolated photon is defined as **a photon for which there is not much activity around it**. 

In order to assess quantitatively this activity, we consider a **cone of a given radius *dR* centered on the photon**. 

One next calculates three variables I<sub>π</sub>, I<sub>n</sub> and I<sub>γ</sub>, related to the **sum of the transverse momenta of all charged hadrons, neutral hadrons and photons present in the cone** respectively. In other words, one considers all charged hadrons, neutral hadrons and photons lying at an angular distance smaller than *dR* of the photon. 

**Those sums are finally compared to the transverse momentum of the photon**. If they are relatively small enough, the photon will then be tagged as isolated.

MadAnalysis 5 comes with predefined methods allowing to calculate those sums, 
```
   double Ipi = PHYSICS->Isol->eflow->sumIsolation(myphoton,event.rec(),0.3,0.,
      IsolationEFlow::TRACK_COMPONENT);
   double In = PHYSICS->Isol->eflow->sumIsolation(myphoton,event.rec(),0.3,0.,
      IsolationEFlow::NEUTRAL_COMPONENT);
   double Igam = PHYSICS->Isol->eflow->sumIsolation(myphoton,event.rec(),0.3,0.,
      IsolationEFlow::PHOTON_COMPONENT);
```
where ```myphoton``` is the photon being tested and we picked a cone of radius *dR*=0.3. 

The first line allows us to compute  I<sub>π</sub> from the charged tracks around the photon (```IsolationEFlow::TRACK_COMPONENT```). The second one is dedicated to I<sub>n</sub> that is evaluated from all neutral hadrons around the photon (```IsolationEFlow::NEUTRAL_COMPONENT```). The third line is finally tackling I<sub>γ</sub>, where any photon component around the considered photon is included (```IsolationEFlow::PHOTON_COMPONENT```), the considered photon as well.

Such methods exist both for leptons and photons, and it is sometimes convenient to get the sum of all three variables above in one go. This is achievable by using
```
   double Itot = PHYSICS->Isol->eflow->sumIsolation(myphoton,event.rec(),0.3,0.,
     IsolationEFlow::ALL_COMPONENT);   
```
___

## HISTOGRAMMING ##

In the context of a real analysis, it is often helpful to get **histograms representing the distribution in a given variable**. Such a variable could be a global property of the events, or a specific property of some object inside the events. 

<div class="pull-right">

<center> <img src="https://s33.postimg.cc/h3t18v367/histo.png">
<sub>[image credits: <a href="https://en.wikipedia.org/wiki/Histogram#/media/File:Histogram_of_arrivals_per_minute.svg">DanielPenfield</a> (CC BY-SA 3.0)]</sub> </center> 
</div>

By getting such a distribution for both a potential signal and the background, one can further decide whether this variable could be of any use to increase the signal-over-background ratio (that is the goal of any LHC analysis).

**MadAnalysis 5 comes with varied methods making histogramming easy**. The procedure is the folllowing.

1- In the ```Initialize``` method of the analysis, one needs to **declare a signal region** by adding
```
  Manager()->AddRegionSelection(“dummy”);
```
I intentionally skip any detail about that, as this will be addressed in 2 or 3 posts. 

2- Still in the  ```Initialize``` method, one needs to declare the histogram we would like to show,
```
  Manager()->AddHisto("ptj1",15,0,1200);
```
This declares a histogram named *ptj1*, containing 15 bins ranging from 0 to 1200.

3- At the beginning of the ```Execute``` method, one needs to read of the weight of each event, as not all events are necessarily equal,
```
  Manager()->InitializeForNewEvent(event.mc()->weight());
```
Those weight will be accounted for when the histogram will be filled, each event therefore entering with the adequate weight.

4- Finally, one still need to fill out histogram, in the ```Execute``` method,
```
  Manager()->FillHisto("ptj1”,10.)
```
The first argument refers to the name of the histogram, and the second one is the value.

5- After running the code on an input file named ```tth.list```, the output file is ```Output/tth/test_analysis_X/Histograms/histos.saf``` where the capital X is a number increased every time the code is run. Each declared histogram is present in this XML-like file, within a given ```<Histo>``` element,

For a given histograms, one can find information about the number of bins and the range,
```
  # nbins   xmin           xmax
     15      0.000000e+00   1.200000e+03
```
some statistics and the value of each bin
```
   <Data>
       0.000000e+00   0.000000e+00    # underflow
       0.000000e+00   0.000000e+00    # bin 1 / 15
       3.639279e-04   0.000000e+00    # bin 2 / 15
       2.362230e-04   0.000000e+00
      …
  </Data>
```
The total value corresponding to each bin is obtained from the sum of the numbers of the two columns. Once again, I will skip any detail concerning the reason behind that;)
___

## A FIRST MADANALYSIS 5 TASK REQUEST ##

Completely unrelated to the rest, there is no dedicated module allowing one to read a histos.saf file and get plots out of it. I would like to get **a Python code (potentially relying on matplotlib)** allowing to do so. An exemplary histogram file can be found [**here**](http://madanalysis.irmp.ucl.ac.be/raw-attachment/wiki/MA5PublicSandBox/example_histos.saf).

This will be the first task request of this particle physics @ utopian-io project. Please do not forget to mention me in any post detailing such an implementation.

The deadline is Friday June 29th, 16:00 UTC.
___


## THE EXERCISE ##

For the exercise of the day, we will move away from our previous analysis and start the study of a [**CMS search for dark matter**](https://arxiv.org/abs/1706.03794). We will come back to the ATLAS analysis in the future.

As usual, one should avoid implementing every single line in the analysis and follow instead the instructions below. Please do not hesitate to shoot questions in the comments.

1. Create a blank analysis from the MadAnalysis 5 main folder,
```./bin/ma5 -E test_cms test_cms```
We will modify the file ```test_cms/Build/SampleAnalyzer/User/Analyzer/test_cms.cpp``` below.

2. In the ```Initialize``` method of this file, please declare a dummy signal region (see above),
```  Manager()->AddRegionSelection("dummy");```

3. In the ```Execute``` method of this file, initialize the weights (in the aim of getting histograms),
```  Manager()->InitializeForNewEvent(event.mc()->weight());```

4. Go to section 3 of the [**CMS analysis note**](https://arxiv.org/abs/1706.03794), on page 4. Create a vector with signal jets as described in the middle of the second paragraph. This is similar to anything we have done so far, as we only focus on transverse momentum and pseudorapidity constraints here.

5. Go the third paragraph on page 3 and create a vector containing all (isolated) signal photons. There is no transverse momentum requirement on the photons, but a pseudorapidity one (see in the second paragraph of section 3 on page 4). Isolation has to be implemented as described above, the thresholds being given in the *medium barrel information* of table 3 in [**this research paper**](https://arxiv.org/abs/1502.02702). Whilst the σ<sub>ηη</sub> criterion can be ignored, the requirement on *H/E* can be implemented thanks to the ```HEoverEE()``` method of the ```RecPhotonFormat``` class.

6. Implement four histograms of 20 bins each. Two of them will be related to the transverse momentum of the first photon and of the first jet, both covering a p<sub>T</sub> range from 0 to 1000 GeV. The last two histograms will be related to the pseudorapidity spectra of the same objects, covering the [-1.5,1.5] range for the first photon and the [-5,5] range for the first jet.

7. Apply the code on the previous sample of **10 simulated LHC collisions** (see [**here**](http://madanalysis.irmp.ucl.ac.be/raw-attachment/wiki/MA5PublicSandBox/tth_aa.root)).

Don’t hesitate to write a post presenting and detailing your code. Note that posts tagged with utopian-io tags as the first two tags (and steemstem as a third) will be reviewed independently by steemstem and utopian-io. Posts that do not include the utopian-io tags as the first two tags will not be reviewed by the utopian-io team.

The deadline is Friday June 29th, 16:00 UTC.
___

### MORE INFORMATION ON THIS PROJECT ###

1. [**The idea**](https://steemit.com/utopian/@lemouth/can-the-potential-of-utopian-advance-cutting-edge-science)
2. [**The project roadmap**](https://steemit.com/utopian-io/@lemouth/towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started)
3. Step 1a: [**implementing electrons, muons and photons**](https://steemit.com/utopian-io/@lemouth/particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer)
4. Step 1b: [**jets and object properties**](https://steemit.com/utopian-io/@lemouth/particle-physics-utopian-implementing-an-lhc-analysis-on-a-computer-the-physics-objects)
5. Step 1c: isolation and histograms (this post)

Participant posts (alphabetical order):
* @effofex: [**exercise 1b**](https://steemit.com/utopian-io/@effofex/particle-physics-exercise-1b-reconstructed-event-filtering-remembering-c-and-vim), [**madanalysis 5 on windows 10**](https://steemit.com/utopian-io/@effofex/installing-and-testing-the-madanalysis-5-particle-physics-platform-on-win10-using-the-windows-subsystem-for-linux-wsl)
* @irelandscape: journey through particle physics ([**1**](https://steemit.com/utopian-io/@irelandscape/journey-through-the-understanding-of-particle-physics-one), [**2**](https://steemit.com/steemstem/@irelandscape/journey-through-the-understanding-of-particle-physics-two), [**2b**](https://steemit.com/steemstem/@irelandscape/journey-through-the-understanding-of-particle-physics-two-bis), [**3**](https://steemit.com/steemstem/@irelandscape/journey-through-the-understanding-of-particle-physics-three)), [**exercise 1b**](https://steemit.com/utopian-io/@irelandscape/particle-physics-lemouth-exercise-1b), [**exercise 1a**](https://steemit.com/utopian-io/@irelandscape/particle-physics-lemouth-exercise-1a)
* @mactro: [**exercise 1b**](https://steemit.com/utopian-io/@mactro/particle-physics-exercise-1b-solution), [**exercise 1a**](https://steemit.com/utopian-io/@mactro/particle-physics-utopian-project-first-exercise).
___

### 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 828 others
properties (23)
authorlemouth
permlinkparticle-physics-utopian-io-objects-isolation-histogramming-and-a-first-task-request
categoryutopian-io
json_metadata{"tags":["utopian-io","blog","steemstem","science","physics"],"users":["effofex","irelandscape","mactro","steemstem"],"image":["https://s33.postimg.cc/aukqi3p3z/cms_again.png","https://s33.postimg.cc/604tozacf/analysis.jpg","https://s33.postimg.cc/586r3pqfz/collhc.jpg","https://s33.postimg.cc/h3t18v367/histo.png"],"links":["https://github.com/BFuks/madanalysis-utopian","https://home.cern/topics/large-hadron-collider","https://home.cern/","http://madanalysis.irmp.ucl.ac.be/wiki/PublicAnalysisDatabase","https://commons.wikimedia.org/wiki/File:Ev059HR_3D.png","https://steemit.com/utopian-io/@lemouth/particle-physics-utopian-implementing-an-lhc-analysis-on-a-computer-the-physics-objects","https://steemit.com/steemstem/@lemouth/dark-matter-from-its-origins-to-its-freeze-out","https://cms.cern","https://pixabay.com/en/analysis-statistics-chart-graphic-810025/","https://steemit.com/utopian-io/@lemouth/towards-an-utopian-contribution-to-particle-physics-the-roadmap-and-how-to-get-started","https://launchpad.net/madanalysis5","https://steemit.com/utopian-io/@lemouth/particle-physics-utopian-detecting-particles-at-colliders-and-implementing-this-on-a-computer","https://www.flickr.com/photos/ronin691/4285125507","https://arxiv.org/abs/1706.03794","https://en.wikipedia.org/wiki/Histogram#/media/File:Histogram_of_arrivals_per_minute.svg","http://madanalysis.irmp.ucl.ac.be/raw-attachment/wiki/MA5PublicSandBox/example_histos.saf","https://arxiv.org/abs/1502.02702","http://madanalysis.irmp.ucl.ac.be/raw-attachment/wiki/MA5PublicSandBox/tth_aa.root","https://steemit.com/utopian/@lemouth/can-the-potential-of-utopian-advance-cutting-edge-science","https://steemit.com/utopian-io/@effofex/particle-physics-exercise-1b-reconstructed-event-filtering-remembering-c-and-vim","https://steemit.com/utopian-io/@effofex/installing-and-testing-the-madanalysis-5-particle-physics-platform-on-win10-using-the-windows-subsystem-for-linux-wsl","https://steemit.com/utopian-io/@irelandscape/journey-through-the-understanding-of-particle-physics-one","https://steemit.com/steemstem/@irelandscape/journey-through-the-understanding-of-particle-physics-two","https://steemit.com/steemstem/@irelandscape/journey-through-the-understanding-of-particle-physics-two-bis","https://steemit.com/steemstem/@irelandscape/journey-through-the-understanding-of-particle-physics-three","https://steemit.com/utopian-io/@irelandscape/particle-physics-lemouth-exercise-1b","https://steemit.com/utopian-io/@irelandscape/particle-physics-lemouth-exercise-1a","https://steemit.com/utopian-io/@mactro/particle-physics-exercise-1b-solution","https://steemit.com/utopian-io/@mactro/particle-physics-utopian-project-first-exercise","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-06-17 16:18:54
last_update2018-06-17 20:47:09
depth0
children56
last_payout2018-06-24 16:18:54
cashout_time1969-12-31 23:59:59
total_payout_value101.275 HBD
curator_payout_value27.362 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18,549
author_reputation338,011,164,701,274
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,113,299
net_rshares59,075,959,676,630
author_curate_reward""
vote details (892)
@allnatural ·
Go here https://steemit.com/@a-a-a to get your post resteemed to over 72,000 followers.
👎  ,
properties (23)
authorallnatural
permlinkre-lemouth-particle-physics-utopian-io-objects-isolation-histogramming-and-a-first-task-request-20180617t161923936z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://steemit.com/@a-a-a"],"app":"steemit/0.1"}
created2018-06-17 16:19:24
last_update2018-06-17 16:19:24
depth1
children0
last_payout2018-06-24 16:19: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_length87
author_reputation-12,956,811,356,827
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,113,360
net_rshares-192,758,685,245
author_curate_reward""
vote details (2)
@crokkon · (edited)
$0.03
.
.
👍  
properties (23)
authorcrokkon
permlinkre-lemouth-particle-physics-utopian-io-objects-isolation-histogramming-and-a-first-task-request-20180621t090146676z
categoryutopian-io
json_metadata"{"app": ""}"
created2018-06-21 09:01:45
last_update2022-09-18 11:44:24
depth1
children1
last_payout2018-06-28 09:01:45
cashout_time1969-12-31 23:59:59
total_payout_value0.019 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1
author_reputation81,214,366,861,104
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,611,979
net_rshares13,000,306,241
author_curate_reward""
vote details (1)
@lemouth ·
Thanks a lot for contributing. I am testing it right now! :)
properties (22)
authorlemouth
permlinkre-crokkon-re-lemouth-particle-physics-utopian-io-objects-isolation-histogramming-and-a-first-task-request-20180621t185807444z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-06-21 18:58:06
last_update2018-06-21 18:58:06
depth2
children0
last_payout2018-06-28 18:58: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_length60
author_reputation338,011,164,701,274
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,678,903
net_rshares0
@effofex · (edited)
$0.05
>Completely unrelated to the rest, there is no dedicated module allowing one to read a histos.saf file and get plots out of it. I would like to get a Python code (potentially relying on matplotlib) allowing to do so.

This caught my attention. I spent some of the spring semester writing custom R code to create histograms (actually ended up with probability distro curves, but histos were created along the way) from the raw per-cell data from some fluid dynamics experiments.  For example, plotting the volumetric distribution of the kinetic energy dissipation rate throughout the reactor, rather than relying on an average value.

edit: Forgot to ask my actual question.  Do you know wow utopian deals with multiple people implementing answers to task requests?

edit: Forgot to ask my actual question.  Do you know wow utopian deals with multiple people implementing answers to task requests?
👍  
properties (23)
authoreffofex
permlinkre-lemouth-particle-physics-utopian-io-objects-isolation-histogramming-and-a-first-task-request-20180618t190415162z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-06-18 19:04:15
last_update2018-06-18 19:07:30
depth1
children23
last_payout2018-06-25 19:04:15
cashout_time1969-12-31 23:59:59
total_payout_value0.035 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length896
author_reputation14,429,105,750,792
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,263,097
net_rshares23,258,854,645
author_curate_reward""
vote details (1)
@effofex ·
$0.03
A few more questions:
* Are the histogram names within the *.saf file unique (will "ptj1" only show up once?)
* There's no info on the x, y, and title in the file, what are the defaults you'd like?
* Are the under/overflow bins shown in the histogram?
* Are you looking for a python module which can be called from code or a command line tool?
* Do you want this to produce an image file or mataplotlib object which can be further edited?

To make sure I understand the data format:
>The total value corresponding to each bin is obtained from the sum of the numbers of the two columns.


For the following data:
```
 <Data>
       0.000000e+00   0.000000e+00    # underflow
       0.000000e+00   1.000000e+00    # bin 1 / 3
       3.000000e-04   0.000000e+00    # bin 2 / 3
       2.000000e-04   3.000000e-04    # bin 3/ 3
       0.000000e+00   0.000000e+00    # overflow
  </Data>
```

The value of bins 1, 2, and 3 are 1,  3x10<sup>-4</sup>, and  5x10<sup>-4</sup>, respectively. Further, we don't need to show this split in the histogram. Correct?
👍  ,
properties (23)
authoreffofex
permlinkre-effofex-re-lemouth-particle-physics-utopian-io-objects-isolation-histogramming-and-a-first-task-request-20180618t200008852z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-06-18 20:00:09
last_update2018-06-18 20:00:09
depth2
children19
last_payout2018-06-25 20:00:09
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,050
author_reputation14,429,105,750,792
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,268,501
net_rshares13,786,543,531
author_curate_reward""
vote details (2)
@lemouth ·
$0.08
Here are answers to your questions. Do not hesitate to come back to me if necessary.

> Are the histogram names within the *.saf file unique (will "ptj1" only show up once?)

All histograms are concatenated within a given SAF file.

>There's no info on the x, y, and title in the file, what are the defaults you'd like?

The title is given between quotes, right after the description. The axis names are not passed. You can leave them blank. However, it may be nice to allow the user to give them.

> Are the under/overflow bins shown in the histogram?

It would be nice to leave this option to the user.

> Are you looking for a python module which can be called from code or a command line tool?

Both can be done quite easily.

> Do you want this to produce an image file or mataplotlib object which can be further edited?

Once again, both. The matplotlib file is important to allow the user to tune it to the layout he/she wants.

> The value of bins 1, 2, and 3 are 1, 3x10-4, and 5x10-4, respectively. Further, we don't need to show this split in the histogram. Correct?

The total number to put in a bin corresponds to the first column minus the second one.
👍  ,
properties (23)
authorlemouth
permlinkre-effofex-re-effofex-re-lemouth-particle-physics-utopian-io-objects-isolation-histogramming-and-a-first-task-request-20180619t132533827z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-06-19 13:25:36
last_update2018-06-19 13:25:36
depth3
children18
last_payout2018-06-26 13:25:36
cashout_time1969-12-31 23:59:59
total_payout_value0.060 HBD
curator_payout_value0.017 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,165
author_reputation338,011,164,701,274
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,359,283
net_rshares37,253,181,047
author_curate_reward""
vote details (2)
@lemouth ·
> This caught my attention. I spent some of the spring semester writing custom R code to create histograms (actually ended up with probability distro curves, but histos were created along the way) from the raw per-cell data from some fluid dynamics experiments. For example, plotting the volumetric distribution of the kinetic energy dissipation rate throughout the reactor, rather than relying on an average value.

Actually, I insist on the python option. The reason is that the code is meant to be used by physicists, and physicists do not use R in general (python, c++ and Fortran are the mostly spread programming languages).

> edit: Forgot to ask my actual question. Do you know wow utopian deals with multiple people implementing answers to task requests?

I have no idea. I suppose all will be rewarded if they are nicely done. On my side, everything that works well will be advertised on the MadAnalysis 5 website. The best module may even be merged with the main branch of madanalysis 5, provided the author agrees.
👍  
properties (23)
authorlemouth
permlinkre-effofex-re-lemouth-particle-physics-utopian-io-objects-isolation-histogramming-and-a-first-task-request-20180619t112625281z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-06-19 11:26:27
last_update2018-06-19 11:26:27
depth2
children2
last_payout2018-06-26 11:26: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_length1,026
author_reputation338,011,164,701,274
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,347,510
net_rshares1,858,841,207
author_curate_reward""
vote details (1)
@effofex ·
No worries on the Python requirement, happy to code in that environment.<br/><div class="pull-right"><sub><a href="https://steemit.com/utopian-io/@roxane/fast-reply-v0-1-never-miss-to-answer-a-comment-again-and-do-it-faster-than-ever">Sent with Fast-Reply</a></sub></div>
properties (22)
authoreffofex
permlinkre-effofex-re-lemouth-particle-physics-utopian-io-objects-isolation-histogramming-and-a-first-task-request-20180619t112625281z-1529547000061
categoryutopian-io
json_metadata{"app":"fast-reply","version":0.2}
created2018-06-21 02:10:12
last_update2018-06-21 02:10:12
depth3
children1
last_payout2018-06-28 02:10: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_length271
author_reputation14,429,105,750,792
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,573,124
net_rshares0
@irelandscape ·
$0.02
Great. Another exciting exercise.

From my first read the instructions appear clear enough.

Happy to contribute to any effort in searching for proof of existence of dark matter. 😀
👍  
properties (23)
authorirelandscape
permlinkre-lemouth-2018617t195014701z
categoryutopian-io
json_metadata{"tags":["utopian-io","blog","steemstem","science","physics"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"}
created2018-06-17 18:50:15
last_update2018-06-17 18:50:15
depth1
children1
last_payout2018-06-24 18:50:15
cashout_time1969-12-31 23:59:59
total_payout_value0.014 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length180
author_reputation15,380,678,988,494
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,128,768
net_rshares10,317,186,031
author_curate_reward""
vote details (1)
@lemouth ·
Is this a hidden comment to request for more dark examples? Noted for the future :D

I am looking forward to your answer :)
properties (22)
authorlemouth
permlinkre-irelandscape-re-lemouth-2018617t195014701z-20180617t195416688z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-06-17 19:54:15
last_update2018-06-17 19:54:15
depth2
children0
last_payout2018-06-24 19:54: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_length123
author_reputation338,011,164,701,274
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,134,954
net_rshares0
@irelandscape · (edited)
$0.02
Hi @lemouth, I have a few questions regarding the exercise:

With regards to step 4 in the exercise, the paper states:
> Events are rejected if the minimum opening angle between pTmiss and any of the four highest transverse momenta jets, ∆φ(pTmiss,pTjet), is less than 0.5. 

Are we to ignore this criteria since you wrote:
> This is similar to anything we have done so far, as we only focus on transverse momentum and pseudorapidity constraints here.

In table 3 of the photon identification paper, the criteria looks like:
> 0.7 GeV + 0.005 pTgamma
1 GeV + 0.005 pTgamma

Am I right to think that the pTgamma value is to be retrieved from:
photon.momentum().Gamma() ?

Do we need to care about the hadronic fraction*fh*?

Thanks!
👍  
properties (23)
authorirelandscape
permlinkre-lemouth-particle-physics-utopian-io-objects-isolation-histogramming-and-a-first-task-request-20180621t132802087z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["lemouth"],"app":"steemit/0.1"}
created2018-06-21 13:28:03
last_update2018-06-21 13:28:45
depth1
children8
last_payout2018-06-28 13:28:03
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length731
author_reputation15,380,678,988,494
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,640,169
net_rshares13,000,306,241
author_curate_reward""
vote details (1)
@lemouth ·
Concerning the opening angle stuff, we will ignore it entirely, as the full selection strategy in fact. This requires a post on its own as special methods are in order to extract cutflows and things like that. For the moment, we solely focus on object definitions.

> Am I right to think that the pTgamma value is to be retrieved from:
photon.momentum().Gamma() ?

This is just an abbrevation  for the pt of the photon. The symbol of the photon is the Greek letter gamma. Therefore, one needs to use `myphoton->pt()`

> Do we need to care about the hadronic fractionfh?

No. We can't do that with our simulation setup (that approximates the real experimental apparatus).
properties (22)
authorlemouth
permlinkre-irelandscape-re-lemouth-particle-physics-utopian-io-objects-isolation-histogramming-and-a-first-task-request-20180621t185446629z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-06-21 18:54:48
last_update2018-06-21 18:54:48
depth2
children7
last_payout2018-06-28 18:54: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_length670
author_reputation338,011,164,701,274
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,678,592
net_rshares0
@irelandscape ·
Ok thanks for the clarification.
properties (22)
authorirelandscape
permlinkre-lemouth-2018621t20150831z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"}
created2018-06-21 19:01:54
last_update2018-06-21 19:01:54
depth3
children6
last_payout2018-06-28 19:01: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_length32
author_reputation15,380,678,988,494
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,679,314
net_rshares0
@kingvictor ·
Wow this is really interesting "dark matter " am really looking forward to your final proof.
properties (22)
authorkingvictor
permlinkre-lemouth-particle-physics-utopian-io-objects-isolation-histogramming-and-a-first-task-request-20180618t000343955z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-06-18 00:03:48
last_update2018-06-18 00:03:48
depth1
children1
last_payout2018-06-25 00:03: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_length92
author_reputation4,215,697,462
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,155,737
net_rshares0
@lemouth ·
Do you mind to be slightly more specific? My proof for what exactly?
properties (22)
authorlemouth
permlinkre-kingvictor-re-lemouth-particle-physics-utopian-io-objects-isolation-histogramming-and-a-first-task-request-20180618t054019490z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-06-18 05:40:21
last_update2018-06-18 05:40:21
depth2
children0
last_payout2018-06-25 05: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_length68
author_reputation338,011,164,701,274
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,182,307
net_rshares0
@kit.andres ·
Hi. Thank you for your contribution, it's amazing to find and support this type of projects here. Despite high academic content, the post is very understandable and well written. 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/12121114).

---- 
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)
authorkit.andres
permlinkre-lemouth-particle-physics-utopian-io-objects-isolation-histogramming-and-a-first-task-request-20180618t143658573z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/1/12121114","https://support.utopian.io/","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"}
created2018-06-18 14:37:00
last_update2018-06-18 14:37:00
depth1
children1
last_payout2018-06-25 14:37: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_length693
author_reputation31,454,326,251,184
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,233,558
net_rshares5,168,634,365
author_curate_reward""
vote details (1)
@lemouth ·
Thanks a lot for the nice  report :)
properties (22)
authorlemouth
permlinkre-kitandres-re-lemouth-particle-physics-utopian-io-objects-isolation-histogramming-and-a-first-task-request-20180619t094403154z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-06-19 09:44:06
last_update2018-06-19 09:44:06
depth2
children0
last_payout2018-06-26 09:44: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_length36
author_reputation338,011,164,701,274
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,338,295
net_rshares0
@mactro ·
$0.03
Another nice exercise! 
First question: do we need to select baseline jets and employ overlap removal from previous exercise before looking for signal jets?
👍  
properties (23)
authormactro
permlinkre-lemouth-particle-physics-utopian-io-objects-isolation-histogramming-and-a-first-task-request-20180619t124402416z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-06-19 12:44:00
last_update2018-06-19 12:44:00
depth1
children1
last_payout2018-06-26 12:44:00
cashout_time1969-12-31 23:59:59
total_payout_value0.023 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length156
author_reputation865,272,238,829
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,354,923
net_rshares15,505,903,096
author_curate_reward""
vote details (1)
@lemouth ·
There is only one type if jets in this analysis. Having two (or sometimes more than two) different jet definitions is not systematics.

Here, only the removal between jets and electrons is necessary, but this is connected to a feature of madanalysis. This can however be done through
``` MyJets  = PHYSICS->Isol->JetCleaning(MyJets,  MyElectrons, 0.2);```
properties (22)
authorlemouth
permlinkre-mactro-re-lemouth-particle-physics-utopian-io-objects-isolation-histogramming-and-a-first-task-request-20180619t133050689z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-06-19 13:30:51
last_update2018-06-19 13:30:51
depth2
children0
last_payout2018-06-26 13:30: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_length355
author_reputation338,011,164,701,274
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,359,884
net_rshares0
@rudyardcatling ·
competition ? 

http://nautil.us//blog/evidence-found-for-a-new-fundamental-particle
properties (22)
authorrudyardcatling
permlinkre-lemouth-particle-physics-utopian-io-objects-isolation-histogramming-and-a-first-task-request-20180618t220757788z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["http://nautil.us//blog/evidence-found-for-a-new-fundamental-particle"],"app":"steemit/0.1"}
created2018-06-18 22:07:57
last_update2018-06-18 22:07:57
depth1
children3
last_payout2018-06-25 22:07:57
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_length84
author_reputation26,008,424,748,431
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,280,474
net_rshares0
@lemouth ·
No. The right word is complementarity (neutrino physics). However, the code I am developing is targeting LHC physics only. Nothing less, nothing more :)
properties (22)
authorlemouth
permlinkre-rudyardcatling-re-lemouth-particle-physics-utopian-io-objects-isolation-histogramming-and-a-first-task-request-20180619t112726130z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-06-19 11:27:27
last_update2018-06-19 11:27:27
depth2
children2
last_payout2018-06-26 11:27: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_length152
author_reputation338,011,164,701,274
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,347,604
net_rshares0
@rudyardcatling ·
the right word in the right place isnt always my strong point as you have probably noticed by now ... lack of time on schoolbenches ... but i still feel that doesnt hold me back from understanding, i sometimes feel i get this unique angle being the cat on the roof looking down at the world, wondering what the hell they are all chasing, but it DOES get in the way of other people understanding what i'm trying to communicate ofcourse

sometimes it does ... especially in exact fields like yours

or 'simple' math lol ... nothing simple about math but math is a language right ? not really a science as such, its a language to express observations in science more like

well then ... see you on the next page , i think i actually got through the replies, a script to filter out replies-only  , (leaving out bots and ads) and only those that havent been replied to seems like a very good idea to be a bit more time efficient ( ireally need computers to do that for me) im gonna put that on the to-do list

a pleasure,

as always, sir :)
properties (22)
authorrudyardcatling
permlinkre-lemouth-re-rudyardcatling-re-lemouth-particle-physics-utopian-io-objects-isolation-histogramming-and-a-first-task-request-20180619t120932482z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-06-19 12:09:33
last_update2018-06-19 12:09:33
depth3
children1
last_payout2018-06-26 12: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_length1,035
author_reputation26,008,424,748,431
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,351,514
net_rshares0
@samminator · (edited)
$0.02
> We will today, for a change, focus on a search for dark matter...

I used to think, naively, that dark matter only exists in theory. But over-time, my thoughts have been re-aligned aright.

Well, even though something is theorized, it doesn't also mean it is non-existent
👍  
properties (23)
authorsamminator
permlinkre-lemouth-particle-physics-utopian-io-objects-isolation-histogramming-and-a-first-task-request-20180617t193309447z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-06-17 19:23:30
last_update2018-06-17 19:25:09
depth1
children6
last_payout2018-06-24 19:23:30
cashout_time1969-12-31 23:59:59
total_payout_value0.015 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length273
author_reputation664,643,698,112,679
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,132,202
net_rshares10,317,186,031
author_curate_reward""
vote details (1)
@lemouth ·
The dark matter hypothesis works extremely well to explain a plethora of cosmological observations. However, dark matter itself is still elusive from the direct detection standpoint. For this reason (i.e. no direct observation), it can still be considered as theoretical. There are other options, like alternative gravities, that work too. Not as well as dark matter, but they are not excluded (for now).
properties (22)
authorlemouth
permlinkre-samminator-re-lemouth-particle-physics-utopian-io-objects-isolation-histogramming-and-a-first-task-request-20180617t200431292z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-06-17 20:04:30
last_update2018-06-17 20:04:30
depth2
children5
last_payout2018-06-24 20:04: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_length404
author_reputation338,011,164,701,274
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,135,938
net_rshares0
@samminator ·
Alternative gravity? I've never heard of it. Where does it apply to? Let me guess; at the sub-atomic level?
Okay, something tells me I'm wrong right now.
properties (22)
authorsamminator
permlinkre-lemouth-re-samminator-re-lemouth-particle-physics-utopian-io-objects-isolation-histogramming-and-a-first-task-request-20180617t210903324z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-06-17 20:59:27
last_update2018-06-17 20:59:27
depth3
children4
last_payout2018-06-24 20:59: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_length153
author_reputation664,643,698,112,679
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,140,896
net_rshares0
@utopian-io ·
Hey @lemouth
**Thanks for contributing on Utopian**.
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-io-objects-isolation-histogramming-and-a-first-task-request-20180618t162008z
categoryutopian-io
json_metadata"{"app": "beem/0.19.29"}"
created2018-06-18 16:20:09
last_update2018-06-18 16:20:09
depth1
children0
last_payout2018-06-25 16:20: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_length504
author_reputation152,955,367,999,756
root_title"Particle physics @ utopian-io - Objects isolation, histogramming and a first task request"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,246,096
net_rshares5,168,634,365
author_curate_reward""
vote details (1)