Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Zach Marshall
athena
Commits
05388a18
Commit
05388a18
authored
8 years ago
by
Atlas-Software Librarian
Committed by
Graeme Stewart
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
'CMakeLists.txt' (CommissionRec-00-02-06)
parent
99043d68
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Commission/CommissionRec/CMakeLists.txt
+29
-0
29 additions, 0 deletions
Commission/CommissionRec/CMakeLists.txt
Commission/CommissionRec/src/ComTimeRec.cxx
+5
-5
5 additions, 5 deletions
Commission/CommissionRec/src/ComTimeRec.cxx
with
34 additions
and
5 deletions
Commission/CommissionRec/CMakeLists.txt
0 → 100644
+
29
−
0
View file @
05388a18
################################################################################
# Package: CommissionRec
################################################################################
# Declare the package name:
atlas_subdir
(
CommissionRec
)
# Declare the package's dependencies:
atlas_depends_on_subdirs
(
PUBLIC
Commission/CommissionUtils
Control/AthenaBaseComps
GaudiKernel
PRIVATE
Commission/CommissionEvent
Simulation/G4Sim/TrackRecord
)
# External dependencies:
find_package
(
CLHEP
)
# Component(s) in the package:
atlas_add_component
(
CommissionRec
src/*.cxx
src/components/*.cxx
INCLUDE_DIRS
${
CLHEP_INCLUDE_DIRS
}
LINK_LIBRARIES
${
CLHEP_LIBRARIES
}
CommissionUtilsLib AthenaBaseComps GaudiKernel CommissionEvent
)
# Install files from the package:
atlas_install_headers
(
CommissionRec
)
This diff is collapsed.
Click to expand it.
Commission/CommissionRec/src/ComTimeRec.cxx
+
5
−
5
View file @
05388a18
...
...
@@ -78,16 +78,16 @@ StatusCode ComTimeRec::execute()
// Use the Timed Track Record of the muon entering the cavern.
// const TimedTrackRecordCollection* coll;
const
TrackRecordCollection
*
coll
(
NULL
);
if
(
evtStore
()
->
contains
<
TrackRecordCollection
>
(
m_TTRKey
)
){
ATH_MSG_ERROR
(
" can not retrieve TTR with key "
<<
m_TTRKey
);
if
(
!
evtStore
()
->
contains
<
TrackRecordCollection
>
(
m_TTRKey
)
){
ATH_MSG_ERROR
(
" can not retrieve TrackRecordCollection with key "
<<
m_TTRKey
);
// Put default ComTime into SG for.
ComTime
*
theComTime
=
new
ComTime
();
CHECK
(
evtStore
()
->
record
(
theComTime
,
m_comTimeKey
)
);
return
StatusCode
::
SUCCESS
;
}
// const TimedTrackRecordCollection* coll;
const
TrackRecordCollection
*
coll
(
NULL
);
CHECK
(
evtStore
()
->
retrieve
(
coll
,
m_TTRKey
)
);
int
nMuons
=
0
;
double
earliestMuonTime
=
-
1.
;
// TimedTrackRecord* earliestMuon=NULL;
...
...
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