legend-exp / legend-data-monitor

LEGEND data monitoring
https://legend-data-monitor.readthedocs.io
MIT License
0 stars 5 forks source link

added selection of FC_bsln&muon events #105

Closed sofia-calgaro closed 1 year ago

sofia-calgaro commented 1 year ago

Playing with wf_max-baseline thresholds in different aux channels, we can also select events in geds/spms/... that are associated with FC_bsln events in BSLN01 channel. The same can be done with muon events tagged in MUON01 channel.

If you want to plot geds energy in correspondence of muon events, do:

"subsystems": {
    "geds": {
      "Calibrated energy": {
        "parameters": "cuspEmax_ctc_cal",
        "event_type": "muon", // !!!
        "plot_structure": "per string",
        "resampled": "no",
        "plot_style": "histogram",
        "variation": false,
        "time_window": "10T",
        "range": [null, null]
      }
    }
  }

If you want to plot geds energy in correspondence of auto-triggered FC baseline events, do:

"subsystems": {
    "geds": {
      "Calibrated energy": {
        "parameters": "cuspEmax_ctc_cal",
        "event_type": "FC_bsln", // !!!
        "plot_structure": "per string",
        "resampled": "no",
        "plot_style": "histogram",
        "variation": false,
        "time_window": "10T",
        "range": [null, null]
      }
    }
  }