My Links
http://twikireminderservice.web.cern.ch/TwikiReminderService/reports/lukasz.kreczko@cern.ch_report.html
Personal Preferences
Uncomment preferences variables to activate them (remove the #-sign). Help and details on preferences variables are available in
TWikiPreferences.
- Show tool-tip topic info on mouse-over of WikiWord links, on or off:
- #Set LINKTOOLTIPINFO = off
- Horizontal size of text edit box:
- Vertical size of text edit box:
- Style of text edit box.
width: 99%
for full window width (default), width: auto
to disable.
- Set EDITBOXSTYLE = width: 99%
- Write protect your home page: (set it to your WikiName)
Related Topics
Useful Tools
- SimpleMemoryCheck: add these lines to the python cfg file
process.SimpleMemoryCheck = cms.Service("SimpleMemoryCheck",
ignoreTotal=cms.untracked.int32(1),
oncePerEventMode=cms.untracked.bool(False)
)
- Valgrind: run your test as
valgrind --tool=memcheck --leak-check=yes --show-reachable=yes \
`cmsvgsupp` --num-callers=50 --track-fds=yes cmsRun test.cfg
(replace test.cfg as appropriate)
- Igprof: run your test as
igprof -d -t cmsRun -pp -mp -z -o igprof.myprof.gz cmsRun myreco.py > & out.myprof.txt < /dev/null &
(replace myreco.py as appropriate) Analyse results with:
igprof-analyse -g -d -v -p -r MEM_MAX igprof.myprof.gz | less
Work