ROOT Tips Tricks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 2022-05-31 | |
<# | |
PS> Get-ExecutionPolicy # PowerShell 5.1 (default in Win10) | |
Restricted | |
PS> Set-ExecutionPolicy Unrestricted -Force # as admin | |
PS> Get-ExecutionPolicy # PowerShell 7.2.3 (installed in Win10) | |
RemoteSigned | |
#> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void TH1D::AddBinContent(Int_t bin) { | |
// AbstractMethod, overridden by TH1D (TH1.h) | |
++fArray[bin]; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void TH1::PrintWiki(Option_t * /*option*/) const | |
{ | |
if (fDimension > 1) { | |
Info("PrintWiki", "only for 1D histo"); | |
return; | |
} | |
Int_t binx; | |
Int_t firstx = 0, lastx = fXaxis.GetNbins()+1; | |
Double_t x, bc, be, bsw2; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url("/usr/share/gnome-shell/theme/gnome-shell.css"); | |
/* customizing GNOME Shell for desktop interface | |
with fonts size 9pt (instead default 11pt size) */ | |
/* Text Styles */ | |
/* default text style */ | |
stage { | |
font-size: 9pt; /* 11pt */ | |
} |