[Rivet-svn] r2059 - trunk/src

blackhole at projects.hepforge.org blackhole at projects.hepforge.org
Mon Nov 16 16:17:30 GMT 2009


Author: dgrell
Date: Mon Nov 16 16:17:29 2009
New Revision: 2059

Log:
Missed two files in [2058]. Sorry!

Modified:
   trunk/src/Analysis.cc

Modified: trunk/src/Analysis.cc
==============================================================================
--- trunk/src/Analysis.cc	Mon Nov 16 15:51:37 2009	(r2058)
+++ trunk/src/Analysis.cc	Mon Nov 16 16:17:29 2009	(r2059)
@@ -154,14 +154,14 @@
     return *this;
   }
 
-  const bool Analysis::isCompatible(const ParticleName& beam1, const ParticleName& beam2) const {
+  bool Analysis::isCompatible(const ParticleName& beam1, const ParticleName& beam2) const {
     BeamPair beams(beam1, beam2);
     return compatible(beams, requiredBeams());
     /// @todo Need to also check internal consistency of the analysis' 
     /// beam requirements with those of the projections it uses.
   }
   
-  const bool Analysis::isCompatible(const BeamPair& beams) const {
+  bool Analysis::isCompatible(const BeamPair& beams) const {
     return compatible(beams, requiredBeams());
     /// @todo Need to also check internal consistency of the analysis' 
     /// beam requirements with those of the projections it uses.


More information about the Rivet-svn mailing list