Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (12.4%) to scientific vocabulary
Last synced: 7 months ago · JSON representation ·

Repository

Basic Info
  • Host: GitHub
  • Owner: mmikhasenko
  • License: mit
  • Language: Julia
  • Default Branch: main
  • Size: 2.7 MB
Statistics
  • Stars: 0
  • Watchers: 1
  • Forks: 1
  • Open Issues: 3
  • Releases: 0
Created over 1 year ago · Last pushed 10 months ago
Metadata Files
Readme License Code of conduct Citation

README.md

SciFiAnalysisTools

Stable Documentation In development documentation Build Status Test workflow status Lint workflow Status Docs workflow Status

Coverage

This package provides tools for analyzing data from the LHCb SciFi detector.

Installation

To install the package, use the following command:

julia using Pkg Pkg.add(Pkg.PackageSpec(; url="https://github.com/mmikhasenko/SciFiAnalysisTools.jl.git"))

Usage

To get started, you can explore the provided functionalities,

```julia using SciFiAnalysisTools

testid = 0x00044010 chid = ChannelID(test_id) # split the channel ID into physical parts

code back to hex

id2hex(chid) == testid # true

print the full name

TLQMD(chid) == "T1L0Q1M0mat0_sipm0" # true ```

Plotting on the standard map

The method standard_map can be used to map a list of hex channel IDs and values to two dimensional array. The following example shows how to plot detector subparts on the standard map.

```julia using Plots theme(:wong2, axis=false, grid=false, colorbar=false)

all_hex = [ id2hex(TLQMMSTuple((T, L, Q, M, mat, sipm))) for T ∈ 1:3, L ∈ 0:3, Q ∈ 1:4, M ∈ 0:5, mat ∈ 0:3, sipm ∈ 0:3 if !(M == 5 && T in [1, 2]) ];

plot(layout=grid(3,2), heatmap(standardmap(allhex .=> getproperty.(ChannelID.(allhex), :station))), heatmap(standardmap(allhex .=> getproperty.(ChannelID.(allhex), :module))), heatmap(standardmap(allhex .=> getproperty.(ChannelID.(allhex), :quarter))), heatmap(standardmap(allhex .=> getproperty.(ChannelID.(allhex), :layer))), heatmap(standardmap(allhex .=> getproperty.(ChannelID.(allhex), :mat))), heatmap(standardmap(allhex .=> getproperty.(ChannelID.(allhex), :sipm))) ) ```

How to Cite

If you use SciFiAnalysisTools.jl in your work, please cite using the reference given in CITATION.cff.

Contributing

If you want to make contributions of any kind, please first that a look into our contributing guide directly on GitHub or the contributing page on the website.


Contributors

Owner

  • Name: Misha Mikhasenko
  • Login: mmikhasenko
  • Kind: user
  • Location: Munich, Germany
  • Company: CERN, LHCb, COMPASS, JPAC

physicist, hadron spectroscopy, elementary particles

Citation (CITATION.cff)

# Go to https://citation-file-format.github.io/cff-initializer-javascript/#/ to finish this
cff-version: 1.2.0
title: SciFiAnalysisTools.jl
message: >-
  If you use this software, please cite it using the
  metadata from this file.
type: software
authors:
  - given-names: Mikhail Mikhasenko
    email: mikhail.mikhasenko@cern.ch

GitHub Events

Total
  • Issues event: 4
  • Delete event: 6
  • Push event: 21
  • Pull request event: 10
  • Create event: 4
Last Year
  • Issues event: 4
  • Delete event: 6
  • Push event: 21
  • Pull request event: 10
  • Create event: 4

Issues and Pull Requests

Last synced: 7 months ago

All Time
  • Total issues: 4
  • Total pull requests: 9
  • Average time to close issues: 5 minutes
  • Average time to close pull requests: about 2 months
  • Total issue authors: 1
  • Total pull request authors: 4
  • Average comments per issue: 0.25
  • Average comments per pull request: 0.0
  • Merged pull requests: 9
  • Bot issues: 0
  • Bot pull requests: 6
Past Year
  • Issues: 4
  • Pull requests: 8
  • Average time to close issues: 5 minutes
  • Average time to close pull requests: about 1 month
  • Issue authors: 1
  • Pull request authors: 4
  • Average comments per issue: 0.25
  • Average comments per pull request: 0.0
  • Merged pull requests: 8
  • Bot issues: 0
  • Bot pull requests: 5
Top Authors
Issue Authors
  • mmikhasenko (4)
Pull Request Authors
  • dependabot[bot] (6)
  • github-actions[bot] (4)
  • mmikhasenko (2)
  • abelsiqueira (2)
Top Labels
Issue Labels
bug (1)
Pull Request Labels
dependencies (6) chore (4)

Dependencies

.github/workflows/ReusableTest.yml actions
  • actions/checkout v4 composite
  • codecov/codecov-action v4 composite
  • julia-actions/cache v2 composite
  • julia-actions/julia-buildpkg v1 composite
  • julia-actions/julia-processcoverage v1 composite
  • julia-actions/julia-runtest v1 composite
  • julia-actions/setup-julia v2 composite
.github/workflows/CompatHelper.yml actions
  • julia-actions/cache v2 composite
  • julia-actions/setup-julia v2 composite
.github/workflows/Docs.yml actions
  • actions/checkout v4 composite
  • julia-actions/cache v2 composite
  • julia-actions/setup-julia v2 composite
.github/workflows/Lint.yml actions
  • actions/cache v4 composite
  • actions/checkout v4 composite
  • actions/setup-python v5 composite
  • julia-actions/cache v2 composite
  • julia-actions/setup-julia v2 composite
  • lycheeverse/lychee-action v1 composite
.github/workflows/PreCommitUpdate.yml actions
  • actions/checkout v4 composite
  • actions/setup-python v5 composite
  • peter-evans/create-pull-request v6 composite
.github/workflows/TagBot.yml actions
  • JuliaRegistries/TagBot v1 composite
.github/workflows/Test.yml actions
.github/workflows/TestOnPRs.yml actions