Skip to content

Commit a304ee0

Browse files
committed
nomenclature
1 parent 5da75ee commit a304ee0

File tree

12 files changed

+7
-29
lines changed

12 files changed

+7
-29
lines changed

common/framework/src/OMSimDataFileTypes.cc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
/**
2-
* @todo Check ReflectiveSurface::extractInformation(), code look suspicious.
3-
*/
41
#include "OMSimDataFileTypes.hh"
52
#include "OMSimInputData.hh"
63
#include "OMSimLogger.hh"

common/geometry_construction/include/OMSimDEGG.hh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/**
22
* @file OMSimDEGG.hh
3-
* @brief Construction of the DEGG class.
4-
* @author Geometry from DOUMEKI parsed by Berit Schlüter
3+
* @brief Construction of the DEGG class. From DOUMEKI
54
* @ingroup common
65
*/
76

common/geometry_construction/include/OMSimLOM16.hh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
/** @file OMSimLOM16.hh
22
* @brief Construction of LOM16.
3-
*
4-
* @author Javi Vara & Markus Dittmer
53
* @ingroup common
64
*/
75

common/geometry_construction/include/OMSimLOM18.hh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
/** @file OMSimLOM18.hh
22
* @brief Construction of LOM18.
3-
*
4-
* @author Javi Vara & Markus Dittmer
53
* @ingroup common
64
*/
75
#ifndef OMSimLOM18_h

common/geometry_construction/include/OMSimMDOMFlasher.hh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
* mDOMFlasher is responsible for creating the flashers in the mDOM, which includes a LED,
88
* the air around it, and a glass window on top. The class provides functionalities for constructing
99
* the solids and logical volumes, retrieving them, and simulating the LED flashing based on a given profile.
10-
*
11-
* @author Anna-Sophia Tenbruck, Cristian Lozano, Martin Unland
1210
* @ingroup common
1311
*/
1412

common/geometry_construction/src/abcDetectorComponent.cc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -181,21 +181,21 @@ G4SubtractionSolid *abcDetectorComponent::substractToVolume(G4VSolid *pInputVolu
181181
{
182182
G4SubtractionSolid *lSubstractedVolume;
183183
G4Transform3D lTrans;
184-
G4int iCounter = 0;
184+
G4int lCounter = 0;
185185
for (auto const &[key, Component] : mComponents)
186186
{
187187
lTrans = getNewPosition(pSubstractionPos, pSubstractionRot, Component.Position, Component.Rotation);
188188
G4String mssg = "Substracting " + key + " from " + pInputVolume->GetName() + ".";
189189
log_debug(mssg);
190-
if (iCounter == 0)
190+
if (lCounter == 0)
191191
{
192192
lSubstractedVolume = new G4SubtractionSolid("SubstractedVolume", pInputVolume, Component.VSolid, lTrans);
193193
}
194194
else
195195
{
196196
lSubstractedVolume = new G4SubtractionSolid("SubstractedVolume", lSubstractedVolume, Component.VSolid, lTrans);
197197
}
198-
iCounter++;
198+
lCounter++;
199199
}
200200
return lSubstractedVolume;
201201
}
@@ -213,20 +213,20 @@ G4SubtractionSolid *abcDetectorComponent::substractToVolume(G4VSolid *pInputVolu
213213
G4SubtractionSolid *abcDetectorComponent::substractToVolume(G4VSolid *pInputVolume, G4Transform3D pTrans, G4String pNewVolumeName)
214214
{
215215
G4SubtractionSolid *lSubstractedVolume;
216-
G4int iCounter = 0;
216+
G4int lCounter = 0;
217217
for (auto const &[key, Component] : mComponents)
218218
{
219219
G4String mssg = "Substracting " + key + " from " + pInputVolume->GetName() + ".";
220220
log_debug(mssg);
221-
if (iCounter == 0)
221+
if (lCounter == 0)
222222
{
223223
lSubstractedVolume = new G4SubtractionSolid("SubstractedVolume", pInputVolume, Component.VSolid, pTrans);
224224
}
225225
else
226226
{
227227
lSubstractedVolume = new G4SubtractionSolid("SubstractedVolume", lSubstractedVolume, Component.VSolid, pTrans);
228228
}
229-
iCounter++;
229+
lCounter++;
230230
}
231231
return lSubstractedVolume;
232232
}

supernova/include/OMSimSNParticleGenerators.hh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/**
22
* @file
33
* @brief This file contains the classes in charge of particle generation
4-
* @author Cristian Jesus Lozano Mariscal
54
* @ingroup sngroup
65
*/
76

supernova/include/OMSimSNTools.hh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
*
55
* This class serves as a central utility to house common methods needed in the generation
66
* of SN neutrino interactions.
7-
*
8-
* @author Cristian Jesus Lozano Mariscal
97
* @ingroup sngroup
108
*/
119

supernova/src/OMSimPrimaryGeneratorMessenger.cc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
/** @file OMSimPrimaryGeneratorMessenger.cc
22
* @brief Primary generator messenger to choose the corresponding primary generator.
3-
*
4-
* @author Cristian Jesus Lozano Mariscal
53
*/
64

75
#include "OMSimPrimaryGeneratorMessenger.hh"

supernova/src/OMSimSNAnalysis.cc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
/** @file OMSimSNAnalysis.cc
22
* @brief Analyze data and write output files
3-
*
4-
* @author Cristian Jesus Lozano Mariscal
53
*/
64

75
#include "OMSimSNAnalysis.hh"

0 commit comments

Comments
 (0)