Draft: Read SMOG condition via functors
Functors interpreting SMOG conditions from DeLHCb, grouped here in a functor collection
Depends on Detector!421 (merged) and LHCb!4359 (closed), goes with DaVinci!997 (merged) and Rec!3658 (merged)
Merge request reports
Activity
mentioned in merge request DaVinci!997 (merged)
mentioned in merge request Rec!3658 (merged)
mentioned in merge request LHCb!4359 (closed)
- Resolved by Saverio Mariani
- Resolved by Saverio Mariani
- Resolved by Saverio Mariani
added DPA-WP3 WIP dependency labels
assigned to @samarian
Hi @samarian , We are retiring the Analysis master. Could you follow these instructions to move this MR to DV, by Wednesday next week?
Move ongoing (unmerged) work to DaVinci
You can rebase your unmerged branches on top of DaVinci and open MRs there. First, add Analysis as a remote in your DaVinci clone:
git clone ssh://git@gitlab.cern.ch:7999/lhcb/DaVinci.git cd DaVinci git remote add Analysis ssh://git@gitlab.cern.ch:7999/lhcb/Analysis.git git fetch Analysis git fetch origin
And then rebase the Analysis commits in your branch (e.g.
AM_test
) onto themaster
of DaVinci:# interactive rebase: you can just save the default list git rebase -i --onto origin/master Analysis/master Analysis/AM_test # create a new branch on the rebased commits and push git checkout -b AM_test git push -u origin AM_test
In case you want to rebase onto another DaVinci branch (merge a Analysis and a DaVinci MR), first rebase the DaVinci branch onto the latest master, push it, and then use the following slight variation of the rebase above:
git rebase -i --onto origin/AM_test Analysis/master Analysis/AM_test
Branch successfully ported to DaVinci (see comparison with DV master). Once the development on this will restart, I'll reopen the MR in DV.