LCOV - code coverage report
Current view: top level - reference - MetricRegister.h (source / functions) Hit Total Coverage
Test: plumed test coverage Lines: 23 23 100.0 %
Date: 2018-12-19 07:49:13 Functions: 10 12 83.3 %

          Line data    Source code
       1             : /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
       2             :    Copyright (c) 2013-2018 The plumed team
       3             :    (see the PEOPLE file at the root of the distribution for a list of names)
       4             : 
       5             :    See http://www.plumed.org for more information.
       6             : 
       7             :    This file is part of plumed, version 2.
       8             : 
       9             :    plumed is free software: you can redistribute it and/or modify
      10             :    it under the terms of the GNU Lesser General Public License as published by
      11             :    the Free Software Foundation, either version 3 of the License, or
      12             :    (at your option) any later version.
      13             : 
      14             :    plumed is distributed in the hope that it will be useful,
      15             :    but WITHOUT ANY WARRANTY; without even the implied warranty of
      16             :    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      17             :    GNU Lesser General Public License for more details.
      18             : 
      19             :    You should have received a copy of the GNU Lesser General Public License
      20             :    along with plumed.  If not, see <http://www.gnu.org/licenses/>.
      21             : +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
      22             : #ifndef __PLUMED_reference_MetricRegister_h
      23             : #define __PLUMED_reference_MetricRegister_h
      24             : 
      25             : #include <string>
      26             : #include <cstring>
      27             : #include <vector>
      28             : #include <map>
      29             : #include "tools/Exception.h"
      30             : #include "tools/Tools.h"
      31             : #include "tools/PDB.h"
      32             : #include "ReferenceConfiguration.h"
      33             : 
      34             : namespace PLMD {
      35             : 
      36             : class PDB;
      37             : 
      38         841 : class MetricRegister {
      39             : private:
      40             : /// Pointer to a function which, given the type for a ReferenceConfiguration, creates it
      41             :   typedef ReferenceConfiguration*(*creator_pointer)(const ReferenceConfigurationOptions&);
      42             : /// The set of possible distribution functions we can work with
      43             :   std::map<std::string,creator_pointer> m;
      44             : public:
      45             : /// The destructor
      46             :   ~MetricRegister();
      47             : /// Add a new metric to the register of metrics
      48             :   void add( std::string type, creator_pointer );
      49             : /// Remove a metric from the register of metrics
      50             :   void remove(creator_pointer f);
      51             : /// Verify if a particular metric type is present in the register
      52             :   bool check(std::string type);
      53             : /// Create a reference configuration and don't set a point of reference
      54             :   template <class T>
      55             :   T* create( const std::string& type );
      56             : /// Create a reference configuration and set the point of reference from the pdb
      57             :   template <class T>
      58             :   T* create( const std::string& type, const PDB& pdb );
      59             : };
      60             : 
      61             : MetricRegister& metricRegister();
      62             : 
      63             : #define PLUMED_REGISTER_METRIC(classname,type) \
      64             :   static class classname##RegisterMe{ \
      65             :     static PLMD::ReferenceConfiguration * create(const PLMD::ReferenceConfigurationOptions&ro){return new classname(ro);} \
      66             :   public: \
      67             :     classname##RegisterMe(){PLMD::metricRegister().add(type,create);}; \
      68             :     ~classname##RegisterMe(){PLMD::metricRegister().remove(create);}; \
      69             :   } classname##RegisterMeObject;
      70             : 
      71             : template <class T>
      72        1841 : T* MetricRegister::create( const std::string& type ) {
      73        1841 :   std::string ftype;
      74        1841 :   if( type.find("MULTI-")!=std::string::npos ) {
      75           7 :     ftype="MULTI";
      76             :   } else {
      77        1834 :     std::size_t dash=type.find("-FAST"); // We must remove the fast label
      78        1834 :     ftype=type.substr(0,dash);
      79             :   }
      80        1841 :   plumed_massert( check(ftype), "metric " + ftype + " does not exist" );
      81        3682 :   ReferenceConfigurationOptions ro( type );
      82        1841 :   ReferenceConfiguration* conf=m[ftype]( ro );
      83        1841 :   T* confout = dynamic_cast<T*>( conf );
      84        1841 :   if(!confout) plumed_merror( type + " metric is not valid in this context");
      85        3682 :   return confout;
      86             : }
      87             : 
      88             : template <class T>
      89         382 : T* MetricRegister::create( const std::string& type, const PDB& pdb ) {
      90         382 :   std::string rtype;
      91         382 :   if( type.length()==0 ) {
      92          12 :     std::vector<std::string> remarks( pdb.getRemark() );
      93          12 :     bool found=Tools::parse( remarks, "TYPE", rtype );
      94          12 :     if(!found) plumed_merror("TYPE not specified in pdb input file");
      95             :   } else {
      96         370 :     rtype=type;
      97             :   }
      98         382 :   T* confout=create<T>( rtype );
      99         382 :   confout->set( pdb );
     100         382 :   return confout;
     101             : }
     102             : 
     103             : }
     104             : #endif

Generated by: LCOV version 1.13