This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import uproot | |
import numpy as np | |
import matplotlib.pyplot as plt | |
import mplhep as hep | |
def compute_dijet_mass(pt, eta, phi, mass): | |
px1 = pt[0] * np.cos(phi[0]) | |
py1 = pt[0] * np.sin(phi[0]) | |
pz1 = pt[0] * np.sinh(eta[0]) | |
E1 = np.sqrt(px1*px1 + py1*py1 + pz1*pz1 + mass[0]*mass[0]) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
docker run -it --rm \ | |
-v /cvmfs:/cvmfs \ | |
-v $HOME:$HOME \ | |
-v $PWD:$PWD \ | |
-v $HOME/.globus:/home/atlas/.globus \ | |
-v /tmp/.X11-unix:/tmp/.X11-unix \ | |
-e DISPLAY=${DISPLAY} \ | |
-h ${HOSTNAME} \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM atlasamglab/stats-base:root6.22.00-python3.8 | |
ENV BOOST_VERSION=1.64.0 | |
ENV BOOST_VERSION_=1_64_0 | |
ENV BOOST_ROOT=/usr/include/boost | |
RUN apt-get -qq update && apt-get install -q -y software-properties-common | |
RUN apt-get -qq update && apt-get install -qy g++ gcc git wget | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/env python | |
# | |
# A simple script to create an html page with an overview of the directory tree. | |
# This script walks recursively the directory tree and for each sub-directory | |
# it creates an 'index.html' page which will contain: | |
# - an overview of the subdirectories | |
# - a dump of the text files | |
# - a table (currently with two items per row) with all the images scaled to | |
# some predefined size (currently 400px X 300px) | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[root@pgadow ~]# docker run --rm -it atlas/analysisbase:21.2.150 | |
_ _____ _ _ ___ | |
/_\_ _| | /_\ / __| | |
/ _ \| | | |__ / _ \\__ \ | |
/_/ \_\_| |____/_/ \_\___/ | |
This is a self-contained ATLAS AnalysisBase image. | |
To set up the analysis release of the image, please | |
execute: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[some blah output] | |
ToolSvc.BTagSF_AntiKt4EMTopoJets INFO Hello BTaggingEfficiencyTool user... initializing | |
ToolSvc.BTagSF_AntiKt4EMTopoJets INFO TaggerName = MV2c10 | |
ToolSvc.BTagSF_AntiKt4EMTopoJets INFO OP = FixedCutBEff_77 | |
ToolSvc.BTagSF_AntiKt4EMTopoJets INFO b-jet SF/eff calibration = default / 410470 | |
ToolSvc.BTagSF_AntiKt4EMTopoJets INFO c-jet SF/eff calibration = default / 410470 | |
ToolSvc.BTagSF_AntiKt4EMTopoJets INFO tau-jet SF/eff calibration = default / 410470 | |
ToolSvc.BTagSF_AntiKt4EMTopoJets INFO light-jet SF/eff calibration = default / 410470 | |
ToolSvc.BTagSF_AntiKt4EMTopoJets INFO JetAuthor = AntiKt4EMTopoJets |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*............................................................................* | |
*Br 243 :TrackJetWeight : TrackJetWeight/D * | |
*Entries : 0 : Total Size= 529 bytes One basket in memory * | |
*Baskets : 0 : Basket Size= 32000 bytes Compression= 1.00 * | |
*............................................................................* | |
*Br 244 :TrackJetWeight_FT_EFF_Eigen_B_0__1down : * | |
* | TrackJetWeight_FT_EFF_Eigen_B_0__1down/D * | |
*Entries : 0 : Total Size= 625 bytes One basket in memory * | |
*Baskets : 0 : Basket Size= 32000 bytes Compression= 1.00 * | |
*............................................................................* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pgadow@pgadow-T460p:~/coding/atlas/monoHbb/recast$ docker run --rm -it atlas/athanalysis:21.2.58 | |
_ _____ _ _ ___ | |
/_\_ _| | /_\ / __| | |
/ _ \| | | |__ / _ \\__ \ | |
/_/ \_\_| |____/_/ \_\___/ | |
This is a self-contained ATLAS AthAnalysis image. | |
To set up the analysis release of the image, please | |
execute: |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.