Skip to content

Outlier search in run list #25

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Apr 22, 2024
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,18 @@ Activate the environment to start the analysis:
```bash
conda activate v2dl5
```

## Run list generator

The tool `runlist.py` allows to generate a list of runs for a given observation time and zenith angle.
It generates a lot of printout which should be used to fine tune the run selection.

Example:

```bash

python v2dl5/scripts/generate_runlist.py \
--obs_table ../../../VTS/DL3/v490/dl3_pointlike_moderate2tel/obs-index.fits.gz \
--config examples/run_selection.yml \
--output_dir my_output_dir
```
9 changes: 8 additions & 1 deletion examples/run_selection.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
# Configuration for runlist generator

observations:
obs_cone_radius: 1.5 deg
obs_cone_radius_min: 0.25 deg
obs_cone_radius_max: 1.5 deg

on_region:
target: "LS I +61 303"
Expand All @@ -22,6 +23,12 @@ dqm:

ontime_min: 3 min

l3_rate_min:
V4: 10 Hz
V5: 10 Hz
V6: 10 Hz
V6_redHV: 10 Hz

atmosphere:

weather: ["A", "B", "C"]
Loading