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

Updates in DT segments reco; bugfix in DT timing in MuonIdentification #1690

Closed
wants to merge 28 commits into from
Closed
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
281dd9a
rearranged DT segment building code. Updates to MT pattern reco. Bugf…
ptraczyk Nov 18, 2013
61cb6b3
fixed compiler warnings and a memory leak
ptraczyk Nov 22, 2013
1d5a3d2
performance optimizations
ptraczyk Nov 27, 2013
f04324d
Add plotting scripts
namapane Oct 7, 2013
7817f09
more scripts for local processing
namapane Oct 8, 2013
ef1a118
add more relval samples
namapane Oct 10, 2013
9692d4d
review selection of segments; matching with sim; definition of angles
namapane Oct 15, 2013
ff4f5ea
Add more plots/info to the plotter scripts
lfinco Oct 22, 2013
c5f9390
add script for summary plots
namapane Oct 23, 2013
a730a52
cosmetics
lfinco Oct 25, 2013
4bc1095
add segment pulls
lfinco Oct 29, 2013
c9234a1
fix theta angle pull
lfinco Oct 31, 2013
36b6c6f
Mirror alpha to show correctly plots made for |wheel|
namapane Nov 5, 2013
4ba8a08
Mirror alpha to show correctly plots made for |wheel|
namapane Nov 7, 2013
f5e2a25
style improvements
namapane Nov 7, 2013
1508801
style improvements
namapane Nov 7, 2013
a0fee0f
4D segment plots for MB4 as well in local mode; cosmetics
namapane Nov 22, 2013
db9025c
add axis labels
lfinco Dec 3, 2013
102a3aa
oops
namapane Dec 3, 2013
823d00b
update sample path
namapane Dec 3, 2013
613eb84
move histogram booking to beginRun
namapane Dec 5, 2013
44f30b3
add plot for #fakes
lfinco Dec 4, 2013
0fcf589
cleanup in the cfg files
ptraczyk Dec 17, 2013
da2a3e5
memory allocation cleanup
ptraczyk Dec 17, 2013
91f09a7
Merge branch 'DTSegmentFitUpdate7X' of https://github.com/namapane/cm…
ptraczyk Dec 17, 2013
442604f
fix segfault
ptraczyk Dec 18, 2013
754de33
...and fix a leftover cout
ptraczyk Dec 18, 2013
65f467e
remove previously added cfg parameter, update segment fit logic
ptraczyk Dec 19, 2013
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
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
performT0_vdriftSegCorrection = cms.bool(False),
hit_afterT0_resolution = cms.double(0.03),
performT0SegCorrection = cms.bool(False),
enable_3par_fit = cms.bool(False),
perform_delta_rejecting = cms.bool(True)
),
Reco2DAlgoName = cms.string('DTCombinatorialPatternReco')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
performT0SegCorrection = cms.bool(False),
hit_afterT0_resolution = cms.double(0.03),
performT0_vdriftSegCorrection = cms.bool(False),
enable_3par_fit = cms.bool(False),
perform_delta_rejecting = cms.bool(True)
)
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@
DTLinearDriftFromDBAlgo,
AlphaMaxPhi = cms.double(100.0),
AlphaMaxTheta = cms.double(100.),
MaxChi2 = cms.double(4.0),
MaxT0 = cms.double(100.0),
MinT0 = cms.double(-100.0),
MaxChi2 = cms.double(8.0),
MaxAllowedHits = cms.uint32(50),
debug = cms.untracked.bool(False),
# Parameters for the cleaner
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@
DTLinearDriftFromDBAlgo,
AlphaMaxPhi = cms.double(1.0),
AlphaMaxTheta = cms.double(0.9),
MaxChi2 = cms.double(4.0),
MaxT0 = cms.double(100.0),
MinT0 = cms.double(-100.0),
MaxChi2 = cms.double(8.0),
MaxAllowedHits = cms.uint32(50),
debug = cms.untracked.bool(False),
# Parameters for the cleaner
Expand All @@ -28,6 +26,7 @@
performT0_vdriftSegCorrection = cms.bool(False),
hit_afterT0_resolution = cms.double(0.03),
performT0SegCorrection = cms.bool(False),
enable_3par_fit = cms.bool(False),
perform_delta_rejecting = cms.bool(True)
),
Reco2DAlgoName = cms.string('DTMeantimerPatternReco')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,12 @@
segmCleanerMode = cms.int32(1),
AlphaMaxPhi = cms.double(1.0),
MaxChi2 = cms.double(8.0),
MaxT0 = cms.double(50.0),
MaxAllowedHits = cms.uint32(50),
# Parameters for the cleaner
nSharedHitsMax = cms.int32(2),
AlphaMaxTheta = cms.double(0.1),
debug = cms.untracked.bool(False),
nUnSharedHitsMin = cms.int32(2),
MinT0 = cms.double(-10.0)
),
Reco2DAlgoName = cms.string('DTMeantimerPatternReco')
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,12 @@
segmCleanerMode = cms.int32(1),
AlphaMaxPhi = cms.double(1.0),
MaxChi2 = cms.double(8.0),
MaxT0 = cms.double(50.0),
MaxAllowedHits = cms.uint32(50),
# Parameters for the cleaner
nSharedHitsMax = cms.int32(2),
AlphaMaxTheta = cms.double(0.1),
debug = cms.untracked.bool(False),
nUnSharedHitsMin = cms.int32(2),
MinT0 = cms.double(-10.0)
),
Reco2DAlgoName = cms.string('DTMeantimerPatternReco')
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
performT0SegCorrection = cms.bool(False),
hit_afterT0_resolution = cms.double(0.03),
performT0_vdriftSegCorrection = cms.bool(False),
enable_3par_fit = cms.bool(False),
perform_delta_rejecting = cms.bool(True)
)
)
Expand Down
Loading