Skip to content

Commit

Permalink
Fix trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
andresailer committed Jul 26, 2023
1 parent eba4717 commit 28884ac
Show file tree
Hide file tree
Showing 11 changed files with 226 additions and 226 deletions.
4 changes: 2 additions & 2 deletions .clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ AlwaysBreakBeforeMultilineStrings: true
AlwaysBreakTemplateDeclarations: false
BinPackArguments: true
BinPackParameters: true
BraceWrapping:
BraceWrapping:
AfterClass: false
AfterControlStatement: false
AfterEnum: false
Expand Down Expand Up @@ -47,7 +47,7 @@ DerivePointerAlignment: false
DisableFormat: false
ExperimentalAutoDetectBinPacking: false
ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
IncludeCategories:
IncludeCategories:
- Regex: '^<.*\.h>'
Priority: 1
- Regex: '^<.*'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doctest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
cmake .. -GNinja -DCMAKE_INSTALL_PREFIX=../install;\
ninja install;\
'
- name: CheckPage
- name: CheckPage
run: |
docker exec CI_container /bin/bash -c 'cd ./Package;
source ${{ matrix.SETUP }};
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ cmake_minimum_required(VERSION 3.14)
cmake_policy(SET CMP0074 NEW) # use package_ROOT env var to find packages
project(k4MarlinWrapper LANGUAGES CXX)

# RPATH settings
# RPATH settings
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE CACHE BOOL "RPATH USE LINK PATH")
option(USE_RUNPATH_INSTEAD_OF_RPATH "Use runpath instead of rpath (allow specifying linked libraries via LD_LIBRARY_PATH)" OFF)
if(USE_RUNPATH_INSTEAD_OF_RPATH)
if(USE_RUNPATH_INSTEAD_OF_RPATH)
set(CMAKE_SHARED_LINKER_FLAGS "-Wl,--enable-new-dtags")
endif()

Expand Down
6 changes: 3 additions & 3 deletions doc/starterkit/k4MarlinWrapperCLIC/CEDViaWrapper.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ All the following steps assume that the environment is setup like above and that

## Creating an input file

To create an input file for the event display we run a simple detector simulation using `ddsim` and a particle gun that shoots photons. The input file that we create here for illustration purposes has only 10 events, which also means that the creation should only take a few minutes. The steps to create this file are the following
To create an input file for the event display we run a simple detector simulation using `ddsim` and a particle gun that shoots photons. The input file that we create here for illustration purposes has only 10 events, which also means that the creation should only take a few minutes. The steps to create this file are the following

```bash
ddsim --steeringFile CLICPerformance/clicConfig/clic_steer.py \
Expand Down Expand Up @@ -65,7 +65,7 @@ MyInitializeDD4hep.ProcessorType = "InitializeDD4hep"
MyInitializeDD4hep.Parameters = {
"DD4hepXMLFile": ["CLICPerformance/Visualisation/CLIC_o3_v06_CED/CLIC_o3_v06_CED.xml"]
}

algList.append(MyInitializeDD4hep)
```
Note that in this case we already have passed in the geometry that we want to use for the event display.
Expand All @@ -80,7 +80,7 @@ MyCEDViewer.ProcessorType = "DDCEDViewer"
MyCEDViewer.Parameters = {
# ... lots of CEDViewer configuration ...
}

# EDM4hep to LCIO converter
edmConvTool = EDM4hep2LcioTool("EDM4hep2lcio")
edmConvTool.convertAll = True
Expand Down
8 changes: 4 additions & 4 deletions doc/starterkit/k4MarlinWrapperCLIC/edmConverters.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ from Configurables import k4DataSvc, PodioInput
# 1
evtsvc = k4DataSvc('EventDataSvc')
# 2
evtsvc.input = 'path/to/file.root'
evtsvc.input = 'path/to/file.root'

# 3
inp = PodioInput('InputReader')
Expand Down Expand Up @@ -82,7 +82,7 @@ algList.append(out)

===

Write **LCIO** events:
Write **LCIO** events:

1. Instantiate a `MarlinProcessorWrapper` with a relevant name.
2. Indicate the `ProcessorType` to be `LCIOOutputProcessor`.
Expand All @@ -104,8 +104,8 @@ Output_DST.Parameters = {
...
}

# 4
algList.append(Output_DST)
# 4
algList.append(Output_DST)
```


Expand Down
2 changes: 1 addition & 1 deletion doc/starterkit/k4MarlinWrapperCLIC/howtoMultithread.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The two levels of parallelims can be combined: events can run in parallel, and a

The following components are used to achieve parallelism:

```python
```python
from Configurables import (HiveWhiteBoard, HiveSlimEventLoopMgr, AvalancheSchedulerSvc)
```

Expand Down
Loading

0 comments on commit 28884ac

Please sign in to comment.