Skip to content

Commit 176f76c

Browse files
Andrea Sofia TrioloAndrea Sofia Triolo
authored andcommitted
new method and checks
1 parent 28d9c76 commit 176f76c

File tree

2 files changed

+1093
-205
lines changed

2 files changed

+1093
-205
lines changed

Detectors/ITSMFT/ITS/postprocessing/studies/include/ITSStudies/Efficiency.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,11 @@ int dcaCut = 8;
5555
float mDCACutsXY[3][2] = {{dcaXY[0] - dcaCut * sigmaDcaXY[0], dcaXY[0] + dcaCut* sigmaDcaXY[0]}, {dcaXY[1] - dcaCut * sigmaDcaXY[1], dcaXY[1] + dcaCut* sigmaDcaXY[1]}, {dcaXY[2] - dcaCut * sigmaDcaXY[2], dcaXY[2] + dcaCut* sigmaDcaXY[2]}}; // cuts at 8 sigma for each layer for xy. The values represent m-8sigma and m+8sigma
5656
float mDCACutsZ[3][2] = {{dcaZ[0] - dcaCut * sigmaDcaZ[0], dcaZ[0] + dcaCut* sigmaDcaZ[0]}, {dcaZ[1] - dcaCut * sigmaDcaZ[1], dcaZ[1] + dcaCut* sigmaDcaZ[1]}, {dcaZ[2] - dcaCut * sigmaDcaZ[2], dcaZ[2] + dcaCut* sigmaDcaZ[2]}};
5757

58+
// std::unique_ptr<std::vector<int>> mExcludedChipMC = std::make_unique(new std::vector<int>{66, 67, 68, 75, 76, 77, 84, 85, 86, 93, 94, 95, 102, 103, 104, 265, 266, 267, 274, 275, 276, 283, 284, 285, 413, 414, 415, 422, 423, 424, 431, 432, 433});
59+
// std::vector<int>* mExcludedChipMC = new std::vector<int>{84, 85, 86, 265, 266, 267};
60+
// std::vector<int>* mExcludedChipMC = new std::vector<int>{85, 266};
61+
std::vector<int>* mExcludedChipMC = new std::vector<int>{66, 67, 68, 75, 76, 77, 84, 85, 86, 93, 94, 95, 102, 103, 104, 265, 266, 267, 274, 275, 276, 283, 284, 285, 413, 414, 415, 422, 423, 424, 431, 432, 433};
62+
// std::vector<int> mExcludedChipMC = {66, 67, 68, 75, 76, 77, 84, 85, 86, 93, 94, 95, 102, 103, 104, 265, 266, 267, 274, 275, 276, 283, 284, 285, 413, 414, 415, 422, 423, 424, 431, 432, 433};
5863
} // namespace study
5964
} // namespace its
6065
} // namespace o2

0 commit comments

Comments
 (0)