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

How to checkout /usercode/ area? #178

Closed
suvadeepbose opened this issue Jul 24, 2013 · 2 comments
Closed

How to checkout /usercode/ area? #178

suvadeepbose opened this issue Jul 24, 2013 · 2 comments
Assignees

Comments

@suvadeepbose
Copy link

I am working inside CMSSW_6_2_0 release area. I want to check out a certain package:
https://github.com/xxx/usercode/blob/master/yyy/zzz/
What would the command for this be?
Thanks, Suvadeep

@jhgoh
Copy link
Contributor

jhgoh commented Jul 25, 2013

This is how I'm doing to checkout my codes migrated from UserCode.
Let's say you have github.com/ACCOUT/MYPKG/SUBPKG1

cmsrel CMSSW_6_2_0
cd CMSSW_6_2_0/src
mkdir MYPKG
cd MYPKG
git init
git remote add -f MYPKG git://github.com/ACCOUNT/MYPKG
git config core.sparsecheckout true
echo SUBPKG1 >> .git/info/sparse-checkout
#echo SUBPKG2 >> .git/info/sparse-checkout
#echo SUBPKG3 >> .git/info/sparse-checkout
git checkout master

@ktf
Copy link
Contributor

ktf commented Aug 9, 2013

Can you please have a look at:

http://cms-sw.github.io/cmssw/tutorial-merge-usercode-repository-in-cmssw.html

and tell me if it helps you?

@ghost ghost assigned suvadeepbose Aug 9, 2013
@ktf ktf closed this as completed Oct 16, 2013
slava77 pushed a commit to slava77/cmssw that referenced this issue Jun 27, 2014
…e-forSLHC14

adjust para set to get suitable matching window
nclopezo added a commit to nclopezo/cmssw that referenced this issue Nov 21, 2014
…t-comp-docker

Make sure cms-externals-pr-test can be still used by docker
parbol pushed a commit to parbol/cmssw that referenced this issue Mar 5, 2015
jpata pushed a commit to jpata/cmssw that referenced this issue Sep 29, 2015
ipapaver pushed a commit to ipapaver/cmssw that referenced this issue Oct 24, 2017
add flag to allow downloadTreesFromEOS to continue download if indivi…
mariadalfonso pushed a commit to mariadalfonso/cmssw that referenced this issue Dec 18, 2017
cerminar pushed a commit to cerminar/cmssw that referenced this issue Mar 9, 2018
…lusterfix

Backport updated gen ntuple, dRNN cluster fix and 2D cluster calibration
rovere pushed a commit to rovere/cmssw that referenced this issue Sep 27, 2018
Reduce the number of blocks used to launch the Riemann fit kernels within the CA.
Rename the kernels to avoid the ambiguiity with the standalone Riemann fit.
Work around spurious warnings in the Eigen test.
slava77 pushed a commit to slava77/cmssw that referenced this issue Oct 9, 2021
emily-tsai11 pushed a commit to emily-tsai11/cmssw that referenced this issue Nov 15, 2022
* CalcBendCuts - Uses bend encoding to decode bend

* Modified CalcBendCuts to be off by default, changed nzbinsPhiCorr to 1 by default

* Added changed in TP LUT and set default nzbinsPhiCorr to 1

* Turned off CalcBendCuts and revised comments

* PR Cleanup

* More PR cleanup

* Address PR comments

* code-format
rgoldouz pushed a commit to rgoldouz/cmssw that referenced this issue Dec 15, 2022
* CalcBendCuts - Uses bend encoding to decode bend

* Modified CalcBendCuts to be off by default, changed nzbinsPhiCorr to 1 by default

* Added changed in TP LUT and set default nzbinsPhiCorr to 1

* Turned off CalcBendCuts and revised comments

* PR Cleanup

* More PR cleanup

* Address PR comments

* code-format
rgoldouz pushed a commit to rgoldouz/cmssw that referenced this issue Dec 15, 2022
* Changed DR so that tracks are only compared to each other if they're in the same overlapping rinv bin.

* Added some comments

* Changed parts of the code dealing with overlapbins to make it less complex.

* Ran scram b -j 8 code-format and other such commands

* Fixed line breaks from scram b -j8 code-format.

* Fixed line breaks

* Fixed line breaks

* Deleted unused variables, made comments describing functions more explicit, and declared several things const to save CPU.

* Added values that limit the number of tracks per bin and number of comparisons per bin based on firmware limitations.

* Added variables that would allow cutting tracks after a set number of tracks is reached in each bin as well as limiting the number of tracks that are compared in eachbin.

* Fixed the formatting of new values in Settings.h and PurgeDuplicate.cc

* Fixed the formatting of new values in Settings.h and PurgeDuplicate.cc

* Changed the way PurgeDuplicate.cc evaluates seedRank

* To help rebase

* Atownse2 calc bend cuts (cms-sw#178)

* CalcBendCuts - Uses bend encoding to decode bend

* Modified CalcBendCuts to be off by default, changed nzbinsPhiCorr to 1 by default

* Added changed in TP LUT and set default nzbinsPhiCorr to 1

* Turned off CalcBendCuts and revised comments

* PR Cleanup

* More PR cleanup

* Address PR comments

* code-format

* Deleted git comments from rebase.

* Added comments to better explain functions in Settings.h

* Changed a vector size comparison for DR that would keep 1 more track per bin than allowed

* Changed DR values to recover performance

* Added a DR variable to the maxStep map

Co-authored-by: Daniel Ally <d.ally@cern.ch>
Co-authored-by: Austin Townsend <atownse2@nd.edu>
cmsbuild pushed a commit that referenced this issue Jun 20, 2023
* Changed DR so that tracks are only compared to each other if they're in the same overlapping rinv bin.

* Added some comments

* Changed parts of the code dealing with overlapbins to make it less complex.

* Ran scram b -j 8 code-format and other such commands

* Fixed line breaks from scram b -j8 code-format.

* Fixed line breaks

* Fixed line breaks

* Deleted unused variables, made comments describing functions more explicit, and declared several things const to save CPU.

* Added values that limit the number of tracks per bin and number of comparisons per bin based on firmware limitations.

* Added variables that would allow cutting tracks after a set number of tracks is reached in each bin as well as limiting the number of tracks that are compared in eachbin.

* Fixed the formatting of new values in Settings.h and PurgeDuplicate.cc

* Fixed the formatting of new values in Settings.h and PurgeDuplicate.cc

* Changed the way PurgeDuplicate.cc evaluates seedRank

* To help rebase

* Atownse2 calc bend cuts (#178)

* CalcBendCuts - Uses bend encoding to decode bend

* Modified CalcBendCuts to be off by default, changed nzbinsPhiCorr to 1 by default

* Added changed in TP LUT and set default nzbinsPhiCorr to 1

* Turned off CalcBendCuts and revised comments

* PR Cleanup

* More PR cleanup

* Address PR comments

* code-format

* Deleted git comments from rebase.

* Added comments to better explain functions in Settings.h

* Changed a vector size comparison for DR that would keep 1 more track per bin than allowed

* Changed DR values to recover performance

* Added a DR variable to the maxStep map

Co-authored-by: Daniel Ally <d.ally@cern.ch>
Co-authored-by: Austin Townsend <atownse2@nd.edu>

readd data files as not yet in CMSSW release

Create github_CI.yml

Readd git CI code after branching from latest CMSSW relese

bug fixes

dummy

tweak

Make DR easier to understand

update to python3

tweak

tweak

tweak

tweak

Switch to D88 geometry

updated to geometry D88

migrate to D77 geom

Switch to D88 geometry

Update to new label names

Update to new label names

Switch to D88 geometry

Allow use of D76 MC

tweak

Create README.md

Update README.md

Update README.md

Update README.md

DUMMY COMMIT BEFORE PR

Removed CI and data files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants