Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DataFormats/Detectors/Common/src/AlignParam.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ bool AlignParam::applyToGeometry() const
node = gGeoManager->MakeAlignablePN(pne);
} else {
LOG(info) << "The symbolic volume name " << symname
<< " does not correspond to a physical entry. Using it as a volume path!";
<< " does not correspond to a physical entry. Using it as a volume path!";
path = symname;
if (!gGeoManager->CheckPath(path)) {
LOG(error) << "Volume path " << path << " is not valid";
Expand Down
2 changes: 1 addition & 1 deletion Detectors/ITSMFT/ITS/simulation/src/Detector.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -1312,7 +1312,7 @@ void Detector::defineSensitiveVolumes()

void Detector::fillParallelWorld() const // TODO: make this configurable to handle different volume lists
{
TGeoParallelWorld *pw = gGeoManager->GetParallelWorld();
TGeoParallelWorld* pw = gGeoManager->GetParallelWorld();
if (pw == nullptr) {
LOG(error) << "Parallel world was not created";
return;
Expand Down
2 changes: 1 addition & 1 deletion Steer/src/O2MCApplication.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ bool O2MCApplicationBase::MisalignGeometry()

// fill parallel world geometry if activated
if (o2::GeometryManagerParam::Instance().useParallelWorld) {
TGeoParallelWorld *pw = gGeoManager->CreateParallelWorld("priority_sensors");
TGeoParallelWorld* pw = gGeoManager->CreateParallelWorld("priority_sensors");
for (auto det : listDetectors) {
if (dynamic_cast<o2::base::Detector*>(det)) {
((o2::base::Detector*)det)->fillParallelWorld();
Expand Down