Skip to content

Commit

Permalink
newsleeter bot will now spam on Monday instead of weekend
Browse files Browse the repository at this point in the history
  • Loading branch information
KSkwarczynski committed Oct 28, 2024
1 parent e5d556d commit 82add79
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Newsletter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions plotting/README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down Expand Up @@ -26,15 +26,15 @@ 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
```

### Usage

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
Expand Down

0 comments on commit 82add79

Please sign in to comment.