Skip to content

Commit

Permalink
Add prefix to keywords; fix headers
Browse files Browse the repository at this point in the history
  • Loading branch information
jakryd committed Apr 6, 2019
1 parent cffc0dc commit 2d1e862
Show file tree
Hide file tree
Showing 19 changed files with 438 additions and 456 deletions.
43 changes: 21 additions & 22 deletions src/maze/Core.cpp
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
/*
* Copyright (c) 2019 Jakub Rydzewski ([email protected]). All rights reserved.
*
* See http://www.maze-code.github.io for more information.
*
* This file is part of maze.
*
* maze is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option)
* any later version.
*
* maze is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE.
*
* See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with maze. If not, see <https://www.gnu.org/licenses/>.
*
*/
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Copyright (c) 2019 Jakub Rydzewski ([email protected]). All rights reserved.
See http://www.maze-code.github.io for more information.
This file is part of maze.
maze is free software: you can redistribute it and/or modify it under the
terms of the GNU Lesser General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option)
any later version.
maze is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE.
See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with maze. If not, see <https://www.gnu.org/licenses/>.
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/**
* @file Core.cpp
Expand Down
43 changes: 21 additions & 22 deletions src/maze/Core.h
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
/*
* Copyright (c) 2019 Jakub Rydzewski ([email protected]). All rights reserved.
*
* See http://www.maze-code.github.io for more information.
*
* This file is part of maze.
*
* maze is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option)
* any later version.
*
* maze is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE.
*
* See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with maze. If not, see <https://www.gnu.org/licenses/>.
*
*/
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Copyright (c) 2019 Jakub Rydzewski ([email protected]). All rights reserved.
See http://www.maze-code.github.io for more information.
This file is part of maze.
maze is free software: you can redistribute it and/or modify it under the
terms of the GNU Lesser General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option)
any later version.
maze is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE.
See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with maze. If not, see <https://www.gnu.org/licenses/>.
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/**
* @file Core.h
Expand Down
49 changes: 24 additions & 25 deletions src/maze/Loss.cpp
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
/*
* Copyright (c) 2019 Jakub Rydzewski ([email protected]). All rights reserved.
*
* See http://www.maze-code.github.io for more information.
*
* This file is part of maze.
*
* maze is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option)
* any later version.
*
* maze is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE.
*
* See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with maze. If not, see <https://www.gnu.org/licenses/>.
*
*/
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Copyright (c) 2019 Jakub Rydzewski ([email protected]). All rights reserved.
See http://www.maze-code.github.io for more information.
This file is part of maze.
maze is free software: you can redistribute it and/or modify it under the
terms of the GNU Lesser General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option)
any later version.
maze is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE.
See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with maze. If not, see <https://www.gnu.org/licenses/>.
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/**
* @file Loss.cpp
Expand All @@ -31,7 +30,7 @@
namespace PLMD {
namespace maze {

//+PLUMEDOC MAZE_LOSS LOSS
//+PLUMEDOC MAZE_LOSS MAZE_LOSS
/*
Define a coarse-grained loss function describing interactions in a
Expand All @@ -53,14 +52,14 @@ the PARAMS keyword.
The loss function can be defined in the following way:
\plumedfile
l: LOSS PARAMS=1,1,1
l: MAZE_LOSS PARAMS=1,1,1
\endplumedfile
*/
//+ENDPLUMEDOC

// Registers the LOSS action.
PLUMED_REGISTER_ACTION(Loss, "LOSS")
PLUMED_REGISTER_ACTION(Loss, "MAZE_LOSS")

void Loss::registerKeywords(Keywords& keys) {
Colvar::registerKeywords(keys);
Expand Down
43 changes: 21 additions & 22 deletions src/maze/Loss.h
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
/*
* Copyright (c) 2019 Jakub Rydzewski ([email protected]). All rights reserved.
*
* See http://www.maze-code.github.io for more information.
*
* This file is part of maze.
*
* maze is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option)
* any later version.
*
* maze is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE.
*
* See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with maze. If not, see <https://www.gnu.org/licenses/>.
*
*/
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Copyright (c) 2019 Jakub Rydzewski ([email protected]). All rights reserved.
See http://www.maze-code.github.io for more information.
This file is part of maze.
maze is free software: you can redistribute it and/or modify it under the
terms of the GNU Lesser General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option)
any later version.
maze is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE.
See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with maze. If not, see <https://www.gnu.org/licenses/>.
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/**
* @file Loss.h
Expand Down
43 changes: 21 additions & 22 deletions src/maze/Member.cpp
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
/*
* Copyright (c) 2019 Jakub Rydzewski ([email protected]). All rights reserved.
*
* See http://www.maze-code.github.io for more information.
*
* This file is part of maze.
*
* maze is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option)
* any later version.
*
* maze is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE.
*
* See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with maze. If not, see <https://www.gnu.org/licenses/>.
*
*/
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Copyright (c) 2019 Jakub Rydzewski ([email protected]). All rights reserved.
See http://www.maze-code.github.io for more information.
This file is part of maze.
maze is free software: you can redistribute it and/or modify it under the
terms of the GNU Lesser General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option)
any later version.
maze is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE.
See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with maze. If not, see <https://www.gnu.org/licenses/>.
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/**
* @file Member.cpp
Expand Down
43 changes: 21 additions & 22 deletions src/maze/Member.h
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
/*
* Copyright (c) 2019 Jakub Rydzewski ([email protected]). All rights reserved.
*
* See http://www.maze-code.github.io for more information.
*
* This file is part of maze.
*
* maze is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option)
* any later version.
*
* maze is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE.
*
* See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with maze. If not, see <https://www.gnu.org/licenses/>.
*
*/
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Copyright (c) 2019 Jakub Rydzewski ([email protected]). All rights reserved.
See http://www.maze-code.github.io for more information.
This file is part of maze.
maze is free software: you can redistribute it and/or modify it under the
terms of the GNU Lesser General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option)
any later version.
maze is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE.
See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with maze. If not, see <https://www.gnu.org/licenses/>.
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/**
* @file Member.h
Expand Down
Loading

0 comments on commit 2d1e862

Please sign in to comment.