Skip to content

Commit c45b35c

Browse files
committed
fixed fbridge formatting
1 parent 1e6dc00 commit c45b35c

File tree

2 files changed

+8
-8
lines changed
  • epochX/cudacpp/CODEGEN/PLUGIN/CUDACPP_SA_OUTPUT/madgraph/iolibs/template_files/gpu

2 files changed

+8
-8
lines changed

epochX/cudacpp/CODEGEN/PLUGIN/CUDACPP_SA_OUTPUT/madgraph/iolibs/template_files/gpu/Bridge.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,9 +283,9 @@ namespace mg5amcCpu
283283
auto fileExists = []( std::string& fileName )
284284
{ struct stat buffer; return stat( fileName.c_str(), &buffer ) == 0; };
285285
size_t paramCardCheck = 2; // ZW: check for paramCard up to 2 directories up
286-
for( size_t k = 0 ; k < paramCardCheck ; ++k )
286+
for( size_t k = 0 ; k < paramCardCheck; ++k )
287287
{
288-
if( fileExists( paramCard ) ) break; // bypass std::filesystem #803
288+
if( fileExists( paramCard ) ) break; // bypass std::filesystem #803
289289
paramCard = "../" + paramCard;
290290
}
291291
process.initProc( paramCard );

epochX/cudacpp/CODEGEN/PLUGIN/CUDACPP_SA_OUTPUT/madgraph/iolibs/template_files/gpu/fbridge.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ extern "C"
1717
using namespace mg5amcCpu;
1818
#endif
1919

20-
using FORTRANFPTYPE = double;
20+
using FORTRANFPTYPE = double;
2121

22-
void fbridgecreate_( CppObjectInFortran** ppbridge, const int* pnevtF, const int* pnparF, const int* pnp4F );
22+
void fbridgecreate_( CppObjectInFortran** ppbridge, const int* pnevtF, const int* pnparF, const int* pnp4F );
2323

24-
void fbridgedelete_( CppObjectInFortran** ppbridge );
24+
void fbridgedelete_( CppObjectInFortran** ppbridge );
2525

26-
void fbridgesequence_( CppObjectInFortran** ppbridge,
26+
void fbridgesequence_( CppObjectInFortran** ppbridge,
2727
const FORTRANFPTYPE* momenta,
2828
const FORTRANFPTYPE* gs,
2929
const FORTRANFPTYPE* rndhel,
@@ -34,7 +34,7 @@ extern "C"
3434
int* selcol,
3535
const bool* pgoodHelOnly );
3636

37-
void fbridgesequence_nomultichannel_( CppObjectInFortran** ppbridge,
37+
void fbridgesequence_nomultichannel_( CppObjectInFortran** ppbridge,
3838
const FORTRANFPTYPE* momenta,
3939
const FORTRANFPTYPE* gs,
4040
const FORTRANFPTYPE* rndhel,
@@ -44,7 +44,7 @@ extern "C"
4444
int* selcol,
4545
const bool* pgoodHelOnly );
4646

47-
void fbridgegetngoodhel_( CppObjectInFortran** ppbridge,
47+
void fbridgegetngoodhel_( CppObjectInFortran** ppbridge,
4848
unsigned int* pngoodhel,
4949
unsigned int* pntothel );
5050

0 commit comments

Comments
 (0)