This file contains hidden or 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
    
  
  
    
  | #!/bin/zsh | |
| # artlogin for f77 experiment | |
| # for your experiment please replace the name and environmental variables to indicate the correct places | |
| # The recommended directory tree is | |
| # exp | |
| # └── f77 | |
| # ├── art_analysis | |
| # │ ├── README.md | |
| # │ └── user | |
| # └── repos | 
  
    
      This file contains hidden or 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
    
  
  
    
  | find e585 -type f -not -path "**/.git/*" -not -path "**/build*" -not -path "**/*.dat*"| tar -zcv -T - -f e585_software.tgz | 
  
    
      This file contains hidden or 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
    
  
  
    
  | { | |
| // style | |
| gStyle->SetOptStat(1111111); | |
| gStyle->SetOptFit(1111); | |
| gStyle->SetStatFormat("10.6g"); | |
| TString dypath = gSystem->GetDynamicPath(); | |
| TString incpath = gSystem->GetIncludePath(); | |
  
    
      This file contains hidden or 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
    
  
  
    
  | #!/bin/sh | |
| nushellx_bin_dir=$(cd $(dirname $0); pwd) | |
| nushellx_home=$nushellx_bin_dir/../../ | |
| export PATH=$nushellx_bin_dir:$PATH | |
| export nushellx_sps=$nushellx_home/sps/ | |
| export mass_data=$nushellx_home/toi/mass-data/ | |
| export toi_data=$nushellx_home/toi/toi-data/ | 
  
    
      This file contains hidden or 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
    
  
  
    
  | \documentclass[twocolumn, a4paper]{ltjsarticle} | |
| \usepackage[dvipsnames]{xcolor} % 色の名前を拡張 | |
| \usepackage{tcolorbox} % 枠本体 | |
| \tcbuselibrary{raster,skins,breakable,theorems} % 呪文 | |
| \newenvironment{qbox}[1]{ % qbox環境を定義して使いやすく | |
| \begin{tcolorbox}[ | |
| colframe = RoyalBlue, | |
| colback = RoyalBlue!10!White, | 
  
    
      This file contains hidden or 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
    
  
  
    
  | #include "Base.h" | |
| Base::Base() : | |
| IsRegistered_(false) | |
| { } | |
| Base::Base(bool isRegistered) : | |
| IsRegistered_(isRegistered) | |
| { } | 
  
    
      This file contains hidden or 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
    
  
  
    
  | git ls-files $* | xargs -I@ bash -c 'echo "$(git log -1 --format="%aI" -- @)" @' | sort -r |