Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean all text files to make them more UNIX #73

Merged
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
4 changes: 2 additions & 2 deletions CollisionOperator/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
add_subdirectory(CollisionProcessors)

# Add Source Files to the global list
add_sources( ./collisionOperator_class.f90
# Add Source Files to the global list
add_sources( ./collisionOperator_class.f90
./scatteringKernels_func.f90)
6 changes: 3 additions & 3 deletions CollisionOperator/CollisionProcessors/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Add Source Files to the global list
add_sources( ./collisionProcessor_inter.f90
./collisionProcessorFactory_func.f90
# Add Source Files to the global list
add_sources( ./collisionProcessor_inter.f90
./collisionProcessorFactory_func.f90
./neutronCEstd_class.f90
./neutronCEimp_class.f90
./neutronMGstd_class.f90
Expand Down
2 changes: 1 addition & 1 deletion CollisionOperator/collisionOperator_class.f90
Original file line number Diff line number Diff line change
Expand Up @@ -140,5 +140,5 @@ subroutine collide(self, p, tally, thisCycle, nextCycle)
call self % physicsTable(idx) % proc % collide(p, tally, thisCycle, nextCycle)

end subroutine collide

end module collisionOperator_class
2 changes: 1 addition & 1 deletion DataStructures/Tests/dictionary_test.f90
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module dictionary_test

!! Parameters
real(defReal),parameter :: realVal = 3.3_defReal
integer(shortInt),parameter :: boolVal = 1
integer(shortInt),parameter :: boolVal = 1
integer(shortInt), parameter :: intVal = 1_shortInt
character(nameLen),parameter :: charNameLen = 'GoFortran_DownWithCpp'
character(pathLen), parameter :: charPathLen ='/home/KyloRen/VaderFanFic'
Expand Down
2 changes: 1 addition & 1 deletion DataStructures/dynArray_class.f90
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ pure function isEmpty_shortInt(self) result(isIt)
isIt = self % mySize == 0 .or. .not.allocated(self % array)

end function isEmpty_shortInt

!!
!! Return current memory capacity of the dynamicArray
!!
Expand Down
2 changes: 1 addition & 1 deletion DataStructures/stack_class.f90
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ subroutine clean_shortInt(self)

end subroutine clean_shortInt


!!
!! Increases size of the stack
!!
Expand Down
2 changes: 1 addition & 1 deletion Geometry/Cells/cell_inter.f90
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ end function inside
!! Args:
!! d [out] -> Distance to the boundary
!! surfIdx [out] -> Index of a surface that will be crossed. If the surface is not defined on
!! the surface shelf its value should be -ve. If no surface is hit return 0.
!! the surface shelf its value should be -ve. If no surface is hit return 0.
!! r [in] -> Position
!! u [in] -> ormalised direction (norm2(u) = 1.0)
!!
Expand Down
2 changes: 1 addition & 1 deletion Geometry/Fields/VectorFields/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ add_sources( ./vectorField_inter.f90

add_unit_tests( ./Tests/uniformVectorField_test.f90
./Tests/uniFissSitesField_test.f90)

add_integration_tests( ./Tests/weightWindowsField_iTest.f90)
2 changes: 1 addition & 1 deletion Geometry/Surfaces/QuadSurfaces/quadSurface_inter.f90
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module quadSurface_inter

implicit none
private

!!
!! Abstract interface to group all quadratic surfaces.
!!
Expand Down
2 changes: 1 addition & 1 deletion Geometry/Surfaces/Tests/truncCylinder_test.f90
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ subroutine testBC(this)
r(pe) = [12.0_defReal, 0.0_defReal, 2.3_defReal]
u(pe) = [ONE, ZERO, ZERO]
r_ref(pe) = [3.0_defReal, 0.0_defReal, 2.3_defReal]
u_ref = u
u_ref = u
call this % surf % transformBC(r, u)
@assertEqual(r_ref, r, TOL)
@assertEqual(u_ref, u, TOL)
Expand Down
2 changes: 1 addition & 1 deletion Geometry/Universes/Tests/universeShelf_test.f90
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ subroutine test_get()
@assertEqual(10, ptr % id())
@assertEqual(10, unis % getID(idx))

! Universe ID 21 -> With the fast access
! Universe ID 21 -> With the fast access
idx = unis % getIdx(21)
ptr => unis % getPtr_fast(idx)
@assertEqual(21, ptr % id())
Expand Down
Loading
Loading