Skip to content
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
a8552fe
Adding functionalities to produced merged noise map objects
Aug 5, 2024
ab527b6
Adding functionalities to produced merged noise map objects
Aug 7, 2024
d5ab57d
Clang format
Aug 7, 2024
3f05ba6
Fixing typo
Aug 7, 2024
25a75e6
fixing typos
Aug 8, 2024
d07ffba
Please consider the following formatting changes
alibuild Aug 8, 2024
e3dd57f
Merge pull request #1 from alibuild/alibot-cleanup-13356
nivram-phy Aug 8, 2024
6d434f6
fixing typos
Aug 8, 2024
f51a8dd
Please consider the following formatting changes
alibuild Aug 8, 2024
effdb02
Merge pull request #2 from alibuild/alibot-cleanup-13356
nivram-phy Aug 8, 2024
fc8a064
fixing typos in copyright issue notice
Aug 8, 2024
619ef88
making small changes to make code more stable
Aug 30, 2024
5baa850
fixing typos
Aug 30, 2024
64478f5
Please consider the following formatting changes
alibuild Aug 30, 2024
7cc5883
Merge pull request #3 from alibuild/alibot-cleanup-13356
nivram-phy Aug 30, 2024
d4272d2
modifying checks on validtime
Sep 2, 2024
ce2403b
modifying checks on validtime
Sep 2, 2024
98ffaf3
modifying checks on validtime
Sep 2, 2024
ee5bdaa
Adding ccdbmerged object to the right call function
Feb 21, 2025
3828a85
fixing space issues
Feb 21, 2025
3727951
fixing space issues
Feb 21, 2025
ec61362
fixing space issues
Feb 21, 2025
2e1aff8
fixing space issues
Feb 21, 2025
14c22bb
copyright header issue
Feb 21, 2025
6b638a1
clang format issue
Feb 21, 2025
a0d84eb
Merge branch 'dev' into merge-noise-branch
nivram-phy Feb 27, 2025
c09d90f
Update NoiseCalibratorSpec.cxx
nivram-phy Feb 28, 2025
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 @@ -83,6 +83,8 @@ void NoiseCalibratorSpec::run(ProcessingContext& pc)
} else {
LOG(info) << "Sending an object to Production-CCDB and DCS-CCDB";
sendOutputCcdbDcs(pc.outputs());
LOG(info) << "Sending an object to Production-CCDBMerge";
sendOutputCcdbMerge(pc.outputs());
}
pc.services().get<ControlService>().readyToQuit(mStopMeOnly ? QuitRequest::Me : QuitRequest::All);
}
Expand All @@ -105,6 +107,8 @@ void NoiseCalibratorSpec::run(ProcessingContext& pc)
} else {
LOG(info) << "Sending an object to Production-CCDB and DCS-CCDB";
sendOutputCcdbDcs(pc.outputs());
LOG(info) << "Sending an object to Production-CCDBMerge";
sendOutputCcdbMerge(pc.outputs());
}
pc.services().get<ControlService>().readyToQuit(mStopMeOnly ? QuitRequest::Me : QuitRequest::All);
}
Expand Down