Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
scdaq
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
scouting-demonstrator
scdaq
Commits
de871482
Commit
de871482
authored
1 year ago
by
Thomas Owen James
Browse files
Options
Downloads
Patches
Plain Diff
removed commented out code, left TODOs
parent
12c82461
No related branches found
No related tags found
1 merge request
!77
Changes to run with CMSSW
Pipeline
#6591378
passed
1 year ago
Stage: check
Stage: build
Stage: run
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/OutputByOrbit.cc
+1
-8
1 addition, 8 deletions
src/OutputByOrbit.cc
src/OutputFileHandler.cc
+0
-3
0 additions, 3 deletions
src/OutputFileHandler.cc
with
1 addition
and
11 deletions
src/OutputByOrbit.cc
+
1
−
8
View file @
de871482
...
...
@@ -25,20 +25,13 @@ OutputByOrbitStream::OutputByOrbitStream(ctrl &ctrl, config &conf)
void
OutputByOrbitStream
::
OutputFixedOrbits
(
Slice
&
out
)
{
uint32_t
orbitN
=
out
.
get_firstOrbitN
();
// LOG(TRACE) << "First orbit number in file received is " << orbitN << ".";
uint32_t
index
=
uint32_t
(
orbitN
/
conf_
.
getNOrbitsPerFile
());
size_t
n
=
0
;
// if (index == 0) {
// LOG(DEBUG) << "index is 0";
// }
// if (out.get_counts() == 0) {
// LOG(TRACE) << "got an empty slice ";
// }
if
((
out
.
get_counts
()
!=
0
)
||
conf_
.
getCMSSWHeaders
())
{
if
(
control_
.
running
.
load
(
std
::
memory_order_acquire
)
||
control_
.
output_force_write
)
{
// i.e should be writing data
if
(
!
out
.
isInitialized
())
{
// LOG(TRACE) << "Slice is uninitialised! Skipping.";
return
;
}
n
=
fwrite
(
out
.
begin
(),
1
,
out
.
size
(),
...
...
This diff is collapsed.
Click to expand it.
src/OutputFileHandler.cc
+
0
−
3
View file @
de871482
...
...
@@ -189,9 +189,6 @@ void OutputFileHandler::write_EoLS_file(uint32_t ls) {
LOG
(
TRACE
)
<<
"writing EoLS file "
<<
EoLS_filename
;
EoLS_file
.
open
(
full_filename
.
c_str
(),
std
::
ios_base
::
out
);
// Originally went after "total events"
// "\",\"0\",\"" << constants::N_orbits_per_lumisection -
// ls_NOrbits_ // Who knows..
// TODO: To me it looks like there are more fields than intended in this file...
EoLS_file_string_stream
<<
"{
\n
\"
data
\"
:[
\"
"
<<
ls_NOrbits_
<<
"
\"
,
\"
"
// NEvents
<<
1
+
max_index_per_ls_
<<
"
\"
,
\"
"
// NFiles
...
...
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