From 82add79029802da8912032bfeede0db887bea834 Mon Sep 17 00:00:00 2001 From: Kamil Skwarczynski Date: Mon, 28 Oct 2024 09:21:12 +0000 Subject: [PATCH] newsleeter bot will now spam on Monday instead of weekend --- .github/workflows/Newsletter.yml | 2 +- plotting/README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/Newsletter.yml b/.github/workflows/Newsletter.yml index 7f7f1e94..40dd280f 100644 --- a/.github/workflows/Newsletter.yml +++ b/.github/workflows/Newsletter.yml @@ -2,7 +2,7 @@ name: Post MaCh3 Newsletter on: schedule: - - cron: '0 0 * * 0' # Every Sunday at midnight + - cron: '0 0 * * 1' # Every Monday at midnight jobs: post_discussion: diff --git a/plotting/README.md b/plotting/README.md index 35ab7a1f..6cef87b8 100644 --- a/plotting/README.md +++ b/plotting/README.md @@ -1,4 +1,4 @@ -## Plotting +# Plotting This directory contains the core MaCh3 plotting tools. `plottingUtils` contains all the code defining the plotting library, the majority of which basically consists of a highly flexible root file reader which can be configured by different experiments to read from their MaCh3 output files and put everything in a nice common format that can then be accessed in plotting applications and allows for easy iteration over parameters and samples. It is also possible to configure the plotting library to be able to read files from other fitters, which is especially useful for cross-fitter validations (a task that tends to take up a lot of time during an analsis). The aim here is to avoid having to have vast numbers of un-maintained plotting scripts for dealing with every possible combination of fitter and analysis iteration and instead maintain this core code and allow experiments to simply maintain their own config files. @@ -26,7 +26,7 @@ The goal with MaCh3s plotting library is to be as flexible as possible and to ab The plotting library comes with a python interface (see [here](https://github.com/mach3-software/MaCh3/blob/develop/README.md#python) for installation details). Once installed, you can simply import the plotting submodule as follows: -``` +```python from pyMaCh3 import plotting ``` @@ -34,7 +34,7 @@ from pyMaCh3 import plotting A very basic example that will plot LLH scans is: -``` +```python from pyMaCh3 import plotting import matplotlib.backends.backend_pdf from matplotlib import pyplot as plt