(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf
:
# Ryunosuke O'Neil | |
# roneil@fnal.gov | |
# https://github.com/ryuwd | |
# | |
# Reconstruct Cosmic Track (Straight, no magnetic field) | |
# uses richie's cosmic time fit | |
# dumps all reco products from this art job to file, discards everything else | |
# READ ME: use tag "CosmicTrackFinderTimeFit" as the cosmic track seed collection tag | |
# Doxyfile 1.8.18 | |
# This file describes the settings to be used by the documentation system | |
# doxygen (www.doxygen.org) for a project. | |
# | |
# All text after a double hash (##) is considered a comment and is placed in | |
# front of the TAG it is preceding. | |
# | |
# All text after a single hash (#) is considered a comment and will be ignored. | |
# The format is: |
#!/bin/bash | |
# Ryunosuke O'Neil | |
# roneil@fnal.gov | |
# https://github.com/ryuwd | |
ORIGINAL_FCLLIST=$1 | |
if [ -z $ORIGINAL_FCLLIST ]; then | |
echo "User didn't specify a fcl list. This is the list used for job submission" |
#!/usr/bin/env python3 | |
import sys | |
import os | |
def get_indentation(line, indent_block): | |
if indent_block == 0: | |
return None | |
whitespace = line[:len(line) - len(line.lstrip())] |
Command execution time: Mu2eUtilities/src/BuildLinearFitMatrixSums.os: 2.660722 seconds | |
Command execution time: Mu2eUtilities/src/CaloHitMCNavigator.os: 2.588137 seconds | |
Command execution time: Mu2eUtilities/src/CoordinateString.os: 1.487854 seconds | |
Command execution time: Mu2eUtilities/src/EjectedProtonSpectrum.os: 0.479809 seconds | |
Command execution time: Mu2eUtilities/src/HistTrackSum.os: 2.042103 seconds | |
Command execution time: Mu2eUtilities/src/HelixTool.os: 5.193650 seconds | |
Command execution time: Mu2eUtilities/src/KalRepInstanceNameDecoder.os: 2.277055 seconds | |
Command execution time: Mu2eUtilities/src/LsqSums2.os: 0.607158 seconds | |
Command execution time: Mu2eUtilities/src/ConversionSpectrum.os: 8.075091 seconds | |
Command execution time: Mu2eUtilities/src/LsqSums4.os: 0.628755 seconds |
# Ryunosuke O'Neil, 2019 | |
# roneil@fnal.gov | |
# ryunosuke.oneil@postgrad.manchester.ac.uk | |
# create a compile_commands.json from scons. | |
# run with Offline as cwd and with mu2e set up correctly. | |
import os, json | |
def main(): |