Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
nptool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
np
nptool
Commits
7ccc7b8a
Commit
7ccc7b8a
authored
4 years ago
by
adrien-matta
Browse files
Options
Downloads
Patches
Plain Diff
* adding Power threshold to FDC2
parent
ac7fa9c0
No related branches found
No related tags found
No related merge requests found
Pipeline
#90758
passed
4 years ago
Stage: build-NPLib
Stage: build-NPSimulation
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
NPLib/Detectors/Samurai/TSamuraiFDC2Physics.cxx
+9
-4
9 additions, 4 deletions
NPLib/Detectors/Samurai/TSamuraiFDC2Physics.cxx
NPLib/Detectors/Samurai/TSamuraiFDC2Physics.h
+1
-1
1 addition, 1 deletion
NPLib/Detectors/Samurai/TSamuraiFDC2Physics.h
with
10 additions
and
5 deletions
NPLib/Detectors/Samurai/TSamuraiFDC2Physics.cxx
+
9
−
4
View file @
7ccc7b8a
...
@@ -48,6 +48,7 @@ ClassImp(TSamuraiFDC2Physics)
...
@@ -48,6 +48,7 @@ ClassImp(TSamuraiFDC2Physics)
ToTThreshold
=
180
;
ToTThreshold
=
180
;
DriftLowThreshold
=
0.2
;
DriftLowThreshold
=
0.2
;
DriftUpThreshold
=
9.4
;
DriftUpThreshold
=
9.4
;
PowerThreshold
=
14
;
}
}
///////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////
...
@@ -88,9 +89,13 @@ void TSamuraiFDC2Physics::BuildPhysicalEvent(){
...
@@ -88,9 +89,13 @@ void TSamuraiFDC2Physics::BuildPhysicalEvent(){
VX0
.
clear
();
VX100
.
clear
(),
D
.
clear
();
VX0
.
clear
();
VX100
.
clear
(),
D
.
clear
();
for
(
auto
it
=
X
.
begin
();
it
!=
X
.
end
();
++
it
){
for
(
auto
it
=
X
.
begin
();
it
!=
X
.
end
();
++
it
){
D
[
it
->
first
]
=
m_reconstruction
.
BuildTrack2D
(
X
[
it
->
first
],
Z
[
it
->
first
],
R
[
it
->
first
],
X0
,
X100
,
a
,
b
);
D
[
it
->
first
]
=
m_reconstruction
.
BuildTrack2D
(
X
[
it
->
first
],
Z
[
it
->
first
],
R
[
it
->
first
],
X0
,
X100
,
a
,
b
);
/* std::ofstream f("distance.txt", std::ios::app);
/* // for Debug, write a file of
{ std::ofstream f("distance.txt", std::ios::app);
f<< D[it->first] << endl;
f<< D[it->first] << endl;
f.close();*/
f.close();
}
*/
// very large a means track perpendicular to the chamber, what happen when there is pile up
// very large a means track perpendicular to the chamber, what happen when there is pile up
if
(
abs
(
a
)
>
1000
)
if
(
abs
(
a
)
>
1000
)
PileUp
++
;
PileUp
++
;
...
@@ -118,7 +123,7 @@ void TSamuraiFDC2Physics::BuildPhysicalEvent(){
...
@@ -118,7 +123,7 @@ void TSamuraiFDC2Physics::BuildPhysicalEvent(){
if
(
it1
!=
it2
&&
it1
->
first
.
first
==
it2
->
first
.
first
){
// different plane, same detector
if
(
it1
!=
it2
&&
it1
->
first
.
first
==
it2
->
first
.
first
){
// different plane, same detector
m_reconstruction
.
ResolvePlane
(
it1
->
second
,
it1
->
first
.
second
,
it2
->
second
,
it2
->
first
.
second
,
P
);
m_reconstruction
.
ResolvePlane
(
it1
->
second
,
it1
->
first
.
second
,
it2
->
second
,
it2
->
first
.
second
,
P
);
if
(
P
.
X
()
!=-
10000
&&
D
[
it1
->
first
]
<
200
&&
D
[
it2
->
first
]
<
200
){
if
(
P
.
X
()
!=-
10000
&&
D
[
it1
->
first
]
<
PowerThreshold
&&
D
[
it2
->
first
]
<
PowerThreshold
){
C
[
it1
->
first
.
first
].
push_back
(
P
);
C
[
it1
->
first
.
first
].
push_back
(
P
);
// Mean pos are weighted based on the the sum of distance from track
// Mean pos are weighted based on the the sum of distance from track
// to hit obtained during the minimisation
// to hit obtained during the minimisation
...
@@ -136,7 +141,7 @@ void TSamuraiFDC2Physics::BuildPhysicalEvent(){
...
@@ -136,7 +141,7 @@ void TSamuraiFDC2Physics::BuildPhysicalEvent(){
if
(
it1
!=
it2
&&
it1
->
first
.
first
==
it2
->
first
.
first
){
// different plane, same detector
if
(
it1
!=
it2
&&
it1
->
first
.
first
==
it2
->
first
.
first
){
// different plane, same detector
m_reconstruction
.
ResolvePlane
(
it1
->
second
,
it1
->
first
.
second
,
it2
->
second
,
it2
->
first
.
second
,
P
);
m_reconstruction
.
ResolvePlane
(
it1
->
second
,
it1
->
first
.
second
,
it2
->
second
,
it2
->
first
.
second
,
P
);
if
(
P
.
X
()
!=-
10000
&&
D
[
it1
->
first
]
<
200
&&
D
[
it2
->
first
]
<
200
)
if
(
P
.
X
()
!=-
10000
&&
D
[
it1
->
first
]
<
PowerThreshold
&&
D
[
it2
->
first
]
<
PowerThreshold
)
C100
[
it1
->
first
.
first
].
push_back
(
P
);
C100
[
it1
->
first
.
first
].
push_back
(
P
);
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
NPLib/Detectors/Samurai/TSamuraiFDC2Physics.h
+
1
−
1
View file @
7ccc7b8a
...
@@ -120,7 +120,7 @@ class TSamuraiFDC2Physics : public TObject, public NPL::VDetector{
...
@@ -120,7 +120,7 @@ class TSamuraiFDC2Physics : public TObject, public NPL::VDetector{
// since the calibration is a sigmoid there quite a few event at the edge
// since the calibration is a sigmoid there quite a few event at the edge
double
DriftLowThreshold
;
//! Minimum Drift length to keep the hit
double
DriftLowThreshold
;
//! Minimum Drift length to keep the hit
double
DriftUpThreshold
;
//! Maximum Drift length to keep the hit
double
DriftUpThreshold
;
//! Maximum Drift length to keep the hit
double
PowerThreshold
;
//! Maximum P2 minimisation value to keep the track
void
RemoveNoise
();
void
RemoveNoise
();
// Construct the 2D track and ref position at Z=0 and Z=100 based on X,Z and Radius provided
// Construct the 2D track and ref position at Z=0 and Z=100 based on X,Z and Radius provided
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment