asalzburger / sms2021-tra-tra

Repository for SummerStudent 2021 project to learn a (conformal) TRAnsform for TRAcks
1 stars 0 forks source link

Implementing Hough transform for (phi_0,q/p_T) feature space #12

Open noemina opened 3 years ago

noemina commented 3 years ago

image

About the efficiency plots:

AndrewSpano commented 3 years ago

Started the hough transformation. The formula I ended up using is:

form

The results (for one-particle files) are this:

sins

I had some issues with seaborn and heatmaps, I will upload tomorrow the code with the requested plots.

AndrewSpano commented 3 years ago

I implemented both equations for the Hough transform (with/without sinus). We will take a look at the sinus first and then check the other.

AndrewSpano commented 3 years ago
AndrewSpano commented 3 years ago
AndrewSpano commented 3 years ago

Finally found the problem with the high pT tracks. I wasn't considering the whole range of values for the approximated transformation, which is (-π, π). I was considering only (0, π), which is a valid assumption for the precise transformation since the sinus() is a periodic and even function. Here are the results I get:

They get closer as p_T gets higher.

noemina commented 3 years ago

This is great to see!!! All makes sense now :)

Give the results you get we can continue using the approximated transformation for this project.