Skip to content
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

Remving the cut on x_F #270

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,9 @@ jobs:
matrix:
include:
# ePIC
- { id: epic_arches, options: --version epic.22.11.3 --limit 20 --detector arches } # max limit=150
- { id: epic_arches, options: --version epic.22.11.3 --limit 120 --detector arches } # max limit=150
- { id: epic_brycecanyon, options: --version epic.22.11.3 --limit 4 --detector brycecanyon } # max limit=35
- { id: epic_arches_radcor, options: --version epic.22.11.3 --limit 20 --detector arches --radcor } # max limit=150
- { id: epic_arches_radcor, options: --version epic.22.11.3 --limit 120 --detector arches --radcor } # max limit=150
- { id: epic_brycecanyon_radcor, options: --version epic.22.11.3 --limit 4 --detector brycecanyon --radcor } # max limit=35
# ECCE / ATHENA
- { id: ecce, options: --version ecce.22.1 --limit 40 } # max limit=375
Expand Down
8 changes: 4 additions & 4 deletions macro/ci/analysis_single_bin.C
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ void analysis_single_bin(
// A->writeSidisTree = true;

// define cuts ===========================================
A->AddBinScheme("w"); A->BinScheme("w")->BuildBin("Min",3.0); // W > 3 GeV
//A->AddBinScheme("w"); A->BinScheme("w")->BuildBin("Min",3.0); // W > 3 GeV
A->AddBinScheme("y"); A->BinScheme("y")->BuildBin("Range",0.01,0.95); // 0.01 < y < 0.95
A->AddBinScheme("z"); A->BinScheme("z")->BuildBin("Range",0.2,0.9); // 0.2 < z < 0.9
A->AddBinScheme("xF"); A->BinScheme("xF")->BuildBin("Min",0.0); // xF > 0
//A->AddBinScheme("z"); A->BinScheme("z")->BuildBin("Range",0.2,0.9); // 0.2 < z < 0.9
//A->AddBinScheme("xF"); A->BinScheme("xF")->BuildBin("Min",0.0); // xF > 0
A->AddBinScheme("ptLab"); A->BinScheme("ptLab")->BuildBin("Min",0.1); // pT_lab > 0.1 GeV (tracking limit)

A->AddBinScheme("q2"); A->BinScheme("q2")->BuildBin("Min",1.0); //Q2>1 GeV2
// perform the analysis ==================================
A->Execute();
};