From 0db86a7dd9f191f337d8669f3c2d411eaa94ca19 Mon Sep 17 00:00:00 2001
From: ralfulrich <ralf.ulrich@kit.edu>
Date: Fri, 20 Nov 2020 00:23:43 +0100
Subject: [PATCH] new naming

---
 tests/framework/testProcessSequence.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tests/framework/testProcessSequence.cpp b/tests/framework/testProcessSequence.cpp
index 49678576a..4a3ea20d4 100644
--- a/tests/framework/testProcessSequence.cpp
+++ b/tests/framework/testProcessSequence.cpp
@@ -121,7 +121,7 @@ public:
   inline void  doInteraction(TView& v) const {
     checkInteract |= 2;
     for (int i = 0; i < nData; ++i) v.parent().data_[i] /= 1.1;
-    cout << "Process2::DoInteraction" << endl;
+    cout << "Process2::doInteraction" << endl;
   }
   template <typename Particle>
   GrammageType getInteractionLength(Particle&) const {
@@ -144,7 +144,7 @@ public:
   inline void doInteraction(TView& v) const {
     checkInteract |= 4;
     for (int i = 0; i < nData; ++i) v.parent().data_[i] *= 1.01;
-    cout << "Process3::DoInteraction" << endl;
+    cout << "Process3::doInteraction" << endl;
   }
   template <typename Particle>
   GrammageType getInteractionLength(Particle&) const {
@@ -165,7 +165,7 @@ public:
 
   template <typename D, typename T>
   inline ProcessReturn doContinuous(D& d, T&) const {
-    std::cout << "Base::DoContinuous" << std::endl;
+    std::cout << "Base::doContinuous" << std::endl;
     checkCont |= 8;
     for (int i = 0; i < nData; ++i) { d.data_[i] /= 1.2; }
     return ProcessReturn::Ok;
-- 
GitLab