From f527eac4d23f5372044ab8273dd73d4103ca6546 Mon Sep 17 00:00:00 2001
From: Eduardo Rodrigues <eduardo.rodrigues@cern.ch>
Date: Fri, 8 Jul 2016 16:57:28 +0200
Subject: [PATCH 01/10] Prepared release v22r0 for upgrade tracking studies.

---
 CMakeLists.txt            | 4 ++--
 PhysSys/CMakeLists.txt    | 2 +-
 PhysSys/cmt/requirements  | 2 +-
 PhysSys/doc/release.notes | 5 +++++
 cmt/project.cmt           | 2 +-
 5 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index c3cff4a20..f5a72a53b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -6,5 +6,5 @@ find_package(GaudiProject)
 #---------------------------------------------------------------
 
 # Declare project name and version
-gaudi_project(Phys v21r6
-              USE Rec v19r3p1)
+gaudi_project(Phys v22r0
+              USE Rec v20r0)
diff --git a/PhysSys/CMakeLists.txt b/PhysSys/CMakeLists.txt
index a610d9ac0..add080d44 100644
--- a/PhysSys/CMakeLists.txt
+++ b/PhysSys/CMakeLists.txt
@@ -1,7 +1,7 @@
 ################################################################################
 # Package: PhysSys
 ################################################################################
-gaudi_subdir(PhysSys v21r6)
+gaudi_subdir(PhysSys v22r0)
 
 gaudi_depends_on_subdirs(Kernel/SelectionLine
                          Phys/BBDecTreeTool
diff --git a/PhysSys/cmt/requirements b/PhysSys/cmt/requirements
index 0e975233f..2e077bdd3 100755
--- a/PhysSys/cmt/requirements
+++ b/PhysSys/cmt/requirements
@@ -1,5 +1,5 @@
 package PhysSys
-version v21r6
+version v22r0
 
 branches doc cmt
 
diff --git a/PhysSys/doc/release.notes b/PhysSys/doc/release.notes
index 366b5e782..93f3a1bd3 100755
--- a/PhysSys/doc/release.notes
+++ b/PhysSys/doc/release.notes
@@ -3,6 +3,11 @@ Package             : PhysSys
 Package Coordinator : DaVinci coordinator
 Purpose             : LHCb physics packages
 
+</PRE><H1><A NAME=v22r0>2016-07-08 Phys v22r0</A></H1><PRE>
+
+Development release for upgrade tracking studies. Released on the master.
+It is based on Gaudi v27r1, LHCb v41r0 and Rec v20r0 and uses LCG_84 with ROOT 6.06.02.
+
 </PRE><H1><A NAME=v21r6>2016-07-04 Phys v21r6</A></H1><PRE>
 
 Production release for the post-TS1 2016 data-taking.
diff --git a/cmt/project.cmt b/cmt/project.cmt
index 2820a39a5..46ab01401 100755
--- a/cmt/project.cmt
+++ b/cmt/project.cmt
@@ -1,6 +1,6 @@
 project PHYS
 
-use REC	REC_v19r3p1
+use REC	REC_v20r0
 
 container      PhysSys
 build_strategy	with_installarea
-- 
GitLab


From d2ab9161dc85199063edb7ace792f31d7afb9bbf Mon Sep 17 00:00:00 2001
From: Eduardo Rodrigues <eduardo.rodrigues@cern.ch>
Date: Tue, 12 Jul 2016 22:06:20 +0200
Subject: [PATCH 02/10] Trying to fix utesttmva.cxx

---
 Phys/MVADictTools/src/applications/utesttmva.cxx | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/Phys/MVADictTools/src/applications/utesttmva.cxx b/Phys/MVADictTools/src/applications/utesttmva.cxx
index 48401d82d..522ad0817 100644
--- a/Phys/MVADictTools/src/applications/utesttmva.cxx
+++ b/Phys/MVADictTools/src/applications/utesttmva.cxx
@@ -15,8 +15,7 @@ bool inittest()
   TMVATransform::optmap options;
   options["Name"]="test";
   
-  options["XMLFile"] = System::getEnv("MVADICTTOOLSROOT")
-                         + "/tests/qmtest/../../options/TestPhi2KK.xml";
+  options["XMLFile"] = "options/TestPhi2KK.xml";
   return tmva.Init(options,std::cout);
 }
  
-- 
GitLab


From bd3f6f57f6b26ab9ac4689325752437d9eb942f5 Mon Sep 17 00:00:00 2001
From: Eduardo Rodrigues <eduardo.rodrigues@cern.ch>
Date: Wed, 13 Jul 2016 16:16:54 +0200
Subject: [PATCH 03/10] Removed warning of unused variable

---
 Phys/JetAccessories/src/HighPtIsoLeptonAndTagPV.cpp | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/Phys/JetAccessories/src/HighPtIsoLeptonAndTagPV.cpp b/Phys/JetAccessories/src/HighPtIsoLeptonAndTagPV.cpp
index 12756e051..be9b498d3 100644
--- a/Phys/JetAccessories/src/HighPtIsoLeptonAndTagPV.cpp
+++ b/Phys/JetAccessories/src/HighPtIsoLeptonAndTagPV.cpp
@@ -373,10 +373,9 @@ LHCb::Particle HighPtIsoLeptonAndTagPV::JetCone(
 
     const LHCb::Particle * myPart = *ip;
     Gaudi::LorentzVector p1 =  (*ip)->momentum();
-
-
-    LHCb::ParticleID ID = myPart->particleID();
-
+    
+    //LHCb::ParticleID ID = myPart->particleID();
+    
     phi2 = (*ip)->momentum().phi();
     e2   = (*ip)->momentum().eta();
     Dphi = fabs(phi-phi2);
-- 
GitLab


From dcc758acfad4c1f167c5abe8f6d56b4f570eaa46 Mon Sep 17 00:00:00 2001
From: Chris Jones <jonesc@hep.phy.cam.ac.uk>
Date: Thu, 14 Jul 2016 16:52:44 +0100
Subject: [PATCH 04/10] Skip empty input locations in ParticleMakerBase

---
 Phys/ParticleMaker/doc/release.notes         |  3 +
 Phys/ParticleMaker/src/ParticleMakerBase.cpp | 58 ++++++++------------
 Phys/ParticleMaker/src/ParticleMakerBase.h   | 12 ++--
 3 files changed, 32 insertions(+), 41 deletions(-)

diff --git a/Phys/ParticleMaker/doc/release.notes b/Phys/ParticleMaker/doc/release.notes
index d5a19aacc..23807c972 100755
--- a/Phys/ParticleMaker/doc/release.notes
+++ b/Phys/ParticleMaker/doc/release.notes
@@ -3,6 +3,9 @@
 ! Responsible : DaVinci coordinator
 !==============================================================================
 
+! 2016-07-14 - Chris Jones
+ - Skip empty input locations in ParticleMakerBase
+
 !======================= ParticleMaker v6r17 2015-11-27 =======================
 
 ! 2015-11-01 - Gerhard Raven
diff --git a/Phys/ParticleMaker/src/ParticleMakerBase.cpp b/Phys/ParticleMaker/src/ParticleMakerBase.cpp
index 44f46358c..d14b5e878 100644
--- a/Phys/ParticleMaker/src/ParticleMakerBase.cpp
+++ b/Phys/ParticleMaker/src/ParticleMakerBase.cpp
@@ -20,18 +20,15 @@
 ParticleMakerBase::ParticleMakerBase( const std::string& name,
                                       ISvcLocator* pSvcLocator)
   : DaVinciAlgorithm ( name , pSvcLocator )
-  , m_apid   (   )
-  , m_pp     ( 0 )
-  , m_app    ( 0 )
-  , m_brem    ( NULL )
 {
-  declareProperty ( "Input"   , m_input = LHCb::ProtoParticleLocation::Charged ) ;
-  declareProperty ( "Particle" , m_pid = "UNDEFINED" ,
+  declareProperty( "Input", m_input = LHCb::ProtoParticleLocation::Charged ) ;
+  declareProperty( "Particle" , m_pid = "UNDEFINED" ,
                     "Particle to create : pion, kaon, muon..."   ) ;
   declareProperty( "AddBremPhotonTo",  m_addBremPhoton,
                    "ParticleIDs to be Brem-corrected (default : electrons only)");
   m_addBremPhoton.push_back( "e+" );
 }
+
 //=========================================================================
 //
 //========================================================================
@@ -47,7 +44,7 @@ StatusCode ParticleMakerBase::initialize ( )
 
   if ( this->inputLocations().empty() )
   {
-    this->inputLocations().push_back(m_input);
+    if ( !m_input.empty() ) { this->inputLocations().push_back(m_input); }
   }
   else
   {
@@ -72,17 +69,17 @@ StatusCode ParticleMakerBase::execute()
   StatusCode sc = makeParticles(newParts);
   if ( sc.isFailure() ) return sc;
 
-  LHCb::Particle::ConstVector constParts ; /// @todo this is a hack due to CaloParticle...
-  constParts.reserve(newParts.size());
+  // CRJ Seems not needed any more 
+  //LHCb::Particle::ConstVector constParts ; /// @todo this is a hack due to CaloParticle...
+  //constParts.reserve(newParts.size());
 
-  for ( LHCb::Particle::Vector::const_iterator i = newParts.begin() ;
-        i != newParts.end() ; ++i )
+  for ( auto * p : newParts )
   {
-    constParts.push_back(*i);
-    addBrem( *i );
+    //constParts.push_back(p);
+    addBrem(p);
   }
 
-  this->markNewTrees(constParts);
+  this->markNewTrees(newParts);
 
   if ( msgLevel(MSG::DEBUG) )
   {
@@ -106,7 +103,7 @@ StatusCode ParticleMakerBase::execute()
 
 StatusCode ParticleMakerBase::loadEventInput()
 {
-  if (msgLevel(MSG::VERBOSE))
+  if ( msgLevel(MSG::VERBOSE) )
   {
     verbose() << ">>> ProtoParticleMakerBase::loadEventInput: load ProtoParticles from "
               << this->inputLocations() << endmsg;
@@ -114,27 +111,21 @@ StatusCode ParticleMakerBase::loadEventInput()
 
   m_protos.clear();
 
-  for ( std::vector<std::string>::const_iterator iLoc = this->inputLocations().begin();
-        iLoc != this->inputLocations().end(); ++iLoc )
+  for ( const auto loc : this->inputLocations() )
   {
-    const LHCb::ProtoParticle::Container* pp =
-      getIfExists< LHCb::ProtoParticle::Container > ( *iLoc) ;
+    const  auto * pp = getIfExists< LHCb::ProtoParticle::Container >(loc) ;
     if ( pp )
     {
       if (msgLevel(MSG::VERBOSE))
       {
         verbose() << "load " << pp->size() << " ProtoParticles from "
-                  << *iLoc << endmsg;
-      }
-      for ( LHCb::ProtoParticle::Container::const_iterator iPP = pp->begin();
-            iPP != pp->end(); ++iPP )
-      {
-        m_protos.push_back(*iPP);
+                  << loc << endmsg;
       }
+      for ( const auto * proto : *pp ) { m_protos.push_back(proto); }
     }
     else
     {
-      Info("No ProtoParticles at " + *iLoc);
+      Info("No ProtoParticles at " + loc);
       continue;
     }
   }
@@ -144,21 +135,16 @@ StatusCode ParticleMakerBase::loadEventInput()
 
 //=============================================================================
 
-void ParticleMakerBase::addBrem( LHCb::Particle* particle )
+void ParticleMakerBase::addBrem( LHCb::Particle * particle )
 {
   bool ok = false;
-  for ( std::vector<std::string>::iterator p = m_addBremPhoton.begin() ;
-        m_addBremPhoton.end() != p; ++p )
+  for ( const auto & p : m_addBremPhoton )
   {
-    if ( *p == m_pid ) 
-    {
-      ok = true;
-      break;
-    }
+    if ( p == m_pid ) { ok = true; break; }
   }
-  
+
   if ( !ok ) return;
-  if ( !m_brem->addBrem( particle ) ) return;
+  if ( !bremAdder()->addBrem( particle ) ) return;
 
   if (msgLevel(MSG::DEBUG))
     debug() << " ------- BremStrahlung has been added to the particle "
diff --git a/Phys/ParticleMaker/src/ParticleMakerBase.h b/Phys/ParticleMaker/src/ParticleMakerBase.h
index 38384356c..8f8b7cc5c 100644
--- a/Phys/ParticleMaker/src/ParticleMakerBase.h
+++ b/Phys/ParticleMaker/src/ParticleMakerBase.h
@@ -54,6 +54,9 @@ protected:
     std::transform( in.begin() , in.end() , out.begin () , ::toupper ) ;
     return out ;
   }
+
+  /// Access the Brem Adder
+  IBremAdder* bremAdder() const { return m_brem;  }
   
 private:
 
@@ -67,10 +70,10 @@ protected:
   /// ID of the anti-particle 
   std::string             m_apid  ;
   /// properties of particle
-  const LHCb::ParticleProperty* m_pp    ;
+  const LHCb::ParticleProperty* m_pp = nullptr;
   
   /// properties of anti-particle
-  const LHCb::ParticleProperty* m_app   ;
+  const LHCb::ParticleProperty* m_app = nullptr;
 
   /// Input Location of protoparticles
   std::string m_input ;
@@ -78,15 +81,14 @@ protected:
   // list of PIDs for which BremStrahlung correction is activated
   std::vector<std::string> m_addBremPhoton;
 
-  IBremAdder* bremAdder(){return m_brem;}
-
 private:
 
   /// Local ProtoParticle container.
   LHCb::ProtoParticle::ConstVector m_protos;
 
   /// Track selector tool
-  IBremAdder* m_brem;
+  IBremAdder* m_brem = nullptr;
 
 };
+
 #endif // PARTICLEMAKERBASE
-- 
GitLab


From 8faedc560b609a5879cbae221751c4ec698802e2 Mon Sep 17 00:00:00 2001
From: Chris Jones <jonesc@hep.phy.cam.ac.uk>
Date: Thu, 14 Jul 2016 17:12:35 +0100
Subject: [PATCH 05/10] add reference

---
 Phys/ParticleMaker/src/ParticleMakerBase.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Phys/ParticleMaker/src/ParticleMakerBase.cpp b/Phys/ParticleMaker/src/ParticleMakerBase.cpp
index d14b5e878..0698677d4 100644
--- a/Phys/ParticleMaker/src/ParticleMakerBase.cpp
+++ b/Phys/ParticleMaker/src/ParticleMakerBase.cpp
@@ -111,7 +111,7 @@ StatusCode ParticleMakerBase::loadEventInput()
 
   m_protos.clear();
 
-  for ( const auto loc : this->inputLocations() )
+  for ( const auto& loc : this->inputLocations() )
   {
     const  auto * pp = getIfExists< LHCb::ProtoParticle::Container >(loc) ;
     if ( pp )
-- 
GitLab


From 26d140ae966859035ad20b4deb17867560d9c02e Mon Sep 17 00:00:00 2001
From: Chris Jones <jonesc@hep.phy.cam.ac.uk>
Date: Thu, 14 Jul 2016 18:17:35 +0100
Subject: [PATCH 06/10] check size before markNewTrees

---
 Phys/ParticleMaker/src/ParticleMakerBase.cpp | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Phys/ParticleMaker/src/ParticleMakerBase.cpp b/Phys/ParticleMaker/src/ParticleMakerBase.cpp
index 0698677d4..d73bc6387 100644
--- a/Phys/ParticleMaker/src/ParticleMakerBase.cpp
+++ b/Phys/ParticleMaker/src/ParticleMakerBase.cpp
@@ -79,6 +79,8 @@ StatusCode ParticleMakerBase::execute()
     addBrem(p);
   }
 
+  const bool ok = !newParts.empty();
+
   this->markNewTrees(newParts);
 
   if ( msgLevel(MSG::DEBUG) )
@@ -94,7 +96,7 @@ StatusCode ParticleMakerBase::execute()
     else { debug() << "No primary vertices" << endmsg; }
   }
 
-  setFilterPassed( !newParts.empty() );
+  setFilterPassed( ok );
 
   return sc;
 }
-- 
GitLab


From 134199ae8fef68950dde857669973a0a4f8df7d3 Mon Sep 17 00:00:00 2001
From: Chris Jones <jonesc@hep.phy.cam.ac.uk>
Date: Fri, 15 Jul 2016 15:26:03 +0100
Subject: [PATCH 07/10] endreq -> endmsg

---
 Phys/DaVinciDecayFinder/src/DecayFinder.cpp      |  0
 Phys/DaVinciDecayFinder/src/DecayFinder.h        |  0
 Phys/DaVinciDecayFinder/src/reclexer.icpp        |  0
 Phys/DaVinciDecayFinder/src/recparser.h          |  0
 Phys/DaVinciDecayFinder/src/recparser.icpp       |  0
 Phys/DaVinciFilters/src/FilterDesktop.cpp        |  0
 Phys/DaVinciFilters/src/FilterDesktop.h          |  0
 Phys/DaVinciFilters/src/FilterEventList.cpp      |  0
 Phys/DaVinciFilters/src/FilterEventList.h        |  0
 Phys/DaVinciInterfaces/Kernel/IBTaggingTool.h    |  0
 Phys/DaVinciInterfaces/Kernel/IBremAdder.h       |  0
 .../Kernel/ICaloParticleMaker.h                  |  0
 Phys/DaVinciInterfaces/Kernel/IChangePIDTool.h   |  0
 Phys/DaVinciInterfaces/Kernel/ICheckOverlap.h    |  0
 Phys/DaVinciInterfaces/Kernel/ICheckSelResults.h |  0
 Phys/DaVinciInterfaces/Kernel/IDecayFinder.h     |  0
 Phys/DaVinciInterfaces/Kernel/IDecayTreeFit.h    |  4 ++--
 .../Kernel/IDecodeSimpleDecayString.h            |  0
 Phys/DaVinciInterfaces/Kernel/IDirectionFit.h    |  0
 .../Kernel/IDistanceCalculator.h                 |  0
 Phys/DaVinciInterfaces/Kernel/IFilterParticles.h |  0
 Phys/DaVinciInterfaces/Kernel/IJetMaker.h        |  0
 Phys/DaVinciInterfaces/Kernel/ILifetimeFitter.h  |  0
 Phys/DaVinciInterfaces/Kernel/IMassFit.h         |  0
 .../Kernel/IP2VVAngleCalculator.h                |  0
 .../Kernel/IP2VVPartAngleCalculator.h            |  0
 Phys/DaVinciInterfaces/Kernel/IPVReFitter.h      |  0
 Phys/DaVinciInterfaces/Kernel/IParticle2State.h  |  0
 .../Kernel/IParticleArrayFilter.h                |  0
 .../DaVinciInterfaces/Kernel/IParticleCombiner.h |  0
 .../Kernel/IParticleDescendants.h                |  0
 Phys/DaVinciInterfaces/Kernel/IParticleFilter.h  |  0
 Phys/DaVinciInterfaces/Kernel/IParticleMaker.h   |  0
 .../DaVinciInterfaces/Kernel/IParticleReFitter.h |  0
 Phys/DaVinciInterfaces/Kernel/IParticleStuffer.h |  0
 Phys/DaVinciInterfaces/Kernel/IParticleTisTos.h  |  0
 .../Kernel/IParticleTransporter.h                |  0
 .../Kernel/IParticleTupleTool.h                  |  0
 Phys/DaVinciInterfaces/Kernel/IParticleValue.h   |  0
 Phys/DaVinciInterfaces/Kernel/IPlotTool.h        |  0
 Phys/DaVinciInterfaces/Kernel/IPrintDecay.h      |  0
 .../Kernel/IProtoParticleFilter.h                |  0
 Phys/DaVinciInterfaces/Kernel/IRelatedPVFinder.h |  0
 .../Kernel/ISecondaryVertexTool.h                |  0
 .../Kernel/ISetInputParticles.h                  |  0
 .../Kernel/IStandardParticleProvider.h           |  0
 Phys/DaVinciInterfaces/Kernel/ITagger.h          |  0
 Phys/DaVinciInterfaces/Kernel/ITisTos.h          |  0
 .../Kernel/ITriggerSelectionTisTos.h             |  0
 Phys/DaVinciInterfaces/Kernel/ITriggerTisTos.h   |  0
 Phys/DaVinciInterfaces/Kernel/IVertexFit.h       |  0
 .../dict/DaVinciInterfacesDict.h                 |  0
 .../dict/DaVinciInterfacesDict.xml               |  0
 Phys/DaVinciKernel/Kernel/DaVinciStringUtils.h   |  0
 Phys/DaVinciKernel/Kernel/FilterParticlesBase.h  |  0
 Phys/DaVinciKernel/Kernel/GetDecay.h             |  0
 Phys/DaVinciKernel/Kernel/GetParticlesForDecay.h |  0
 Phys/DaVinciKernel/Kernel/PP2MCLocation.h        |  0
 Phys/DaVinciKernel/Kernel/TransporterFunctions.h |  0
 Phys/DaVinciKernel/dict/DaVinciKernelDict.h      |  0
 Phys/DaVinciKernel/dict/DaVinciKernelDict.xml    |  0
 .../src/Lib/FilterParticlesBase.cpp              |  0
 Phys/DaVinciKernel/src/Lib/GetDecay.cpp          |  0
 Phys/DaVinciKernel/src/component/DaVinciInit.cpp |  0
 Phys/DaVinciKernel/src/component/DaVinciInit.h   |  0
 .../src/component/DecodeSimpleDecayString.cpp    |  0
 .../src/component/DecodeSimpleDecayString.h      |  0
 .../Kernel/FilterMCParticlesBase.h               |  0
 Phys/DaVinciMCKernel/Kernel/HepMC2MC.h           |  0
 .../DaVinciMCKernel/Kernel/IBackgroundCategory.h |  0
 .../Kernel/ICheatedLifetimeFitter.h              |  0
 .../Kernel/IDaVinciAssociatorsWrapper.h          |  0
 Phys/DaVinciMCKernel/Kernel/IFilterMCParticles.h |  0
 Phys/DaVinciMCKernel/Kernel/IHepMC2MC.h          |  0
 Phys/DaVinciMCKernel/Kernel/IMC2Collision.h      |  0
 .../Kernel/IMCParticleArrayFilter.h              |  0
 .../Kernel/IMCParticleTupleTool.h                |  0
 .../Kernel/IP2VVMCPartAngleCalculator.h          |  0
 Phys/DaVinciMCKernel/Kernel/IPV2MC.h             |  0
 .../DaVinciMCKernel/Kernel/IPrintDecayTreeTool.h |  0
 Phys/DaVinciMCKernel/Kernel/MC2Collision.h       |  0
 .../DaVinciMCKernel/Kernel/MCParticleMakerBase.h |  0
 Phys/DaVinciMCKernel/Kernel/PV2MC.h              |  0
 Phys/DaVinciMCKernel/Kernel/Particle2MC.h        |  0
 Phys/DaVinciMCKernel/Kernel/RC2HepMC.h           |  0
 Phys/DaVinciMCKernel/Kernel/Track2MC.h           |  0
 Phys/DaVinciMCKernel/dict/DaVinciMCKernelDict.h  |  0
 .../DaVinciMCKernel/dict/DaVinciMCKernelDict.xml |  0
 .../src/Lib/FilterMCParticlesBase.cpp            |  0
 Phys/DaVinciMCKernel/src/Lib/IHepMC2MC.cpp       |  0
 Phys/DaVinciMCKernel/src/Lib/IMC2Collision.cpp   |  0
 Phys/DaVinciMCKernel/src/Lib/IPV2MC.cpp          |  0
 Phys/DaVinciMCKernel/src/Lib/MC2Collision.cpp    |  0
 .../src/Lib/MCParticleMakerBase.cpp              |  0
 Phys/DaVinciNeutralTools/src/BremAdder.cpp       |  0
 Phys/DaVinciNeutralTools/src/BremAdder.h         |  0
 .../src/ConjugateNeutralPID.cpp                  |  0
 .../src/ConjugateNeutralPID.h                    |  0
 .../src/NeutralCCChangePIDTool.cpp               |  4 ++--
 .../src/NeutralCCChangePIDTool.h                 |  0
 .../src/CheckOverlap.cpp                         |  0
 Phys/DaVinciOverlapsAndClones/src/CheckOverlap.h |  0
 .../src/CheckVeloOverlap.cpp                     |  0
 .../src/CheckVeloOverlap.h                       |  0
 .../src/FindCloneTool.cpp                        |  0
 .../DaVinciOverlapsAndClones/src/FindCloneTool.h |  0
 .../src/PrintDuplicates.cpp                      |  0
 .../src/PrintDuplicates.h                        |  0
 .../src/RemoveClones.cpp                         |  0
 Phys/DaVinciOverlapsAndClones/src/RemoveClones.h |  0
 .../src/RemoveDuplicates.cpp                     |  2 +-
 .../src/RemoveDuplicates.h                       |  0
 Phys/DaVinciPVTools/src/CheckPV.cpp              |  0
 Phys/DaVinciPVTools/src/CheckPV.h                |  0
 .../src/DistanceCalculatorNames.cpp              |  0
 .../DaVinciPVTools/src/DistanceCalculatorNames.h |  0
 .../src/GenericParticle2PVRelator.h              |  0
 Phys/DaVinciPVTools/src/OnlineP2PVWithIP.cpp     |  0
 Phys/DaVinciPVTools/src/OnlineP2PVWithIPChi2.cpp |  0
 Phys/DaVinciPVTools/src/P2PVLogic.h              |  0
 Phys/DaVinciPVTools/src/P2PVWithIP.cpp           |  0
 Phys/DaVinciPVTools/src/P2PVWithIPChi2.cpp       |  0
 .../src/AlgorithmCorrelationsAlg.cpp             |  0
 Phys/DaVinciTools/src/AlgorithmCorrelationsAlg.h |  0
 Phys/DaVinciTools/src/CheckSelResult.cpp         |  0
 Phys/DaVinciTools/src/CheckSelResult.h           |  0
 Phys/DaVinciTools/src/CheckSelResultsTool.cpp    |  0
 Phys/DaVinciTools/src/CheckSelResultsTool.h      |  0
 Phys/DaVinciTools/src/CountParticles.cpp         |  0
 Phys/DaVinciTools/src/ParticleDescendants.cpp    |  0
 Phys/DaVinciTools/src/ParticleDescendants.h      |  0
 Phys/DaVinciTools/src/PrintDecayTree.cpp         |  0
 .../src/ParticleTransporter.cpp                  |  0
 .../DaVinciTransporter/src/ParticleTransporter.h |  0
 Phys/DaVinciTypes/Kernel/Particle2Vertex.h       |  0
 Phys/DaVinciTypes/dict/DaVinciTypes.xml          |  0
 Phys/DaVinciTypes/dict/DaVinciTypesDict.h        |  0
 Phys/ExtraInfoTools/src/AddExtraInfo.cpp         |  0
 Phys/ExtraInfoTools/src/AddExtraInfo.h           |  0
 .../FlavourTagging/ITaggingUtils.h               |  0
 Phys/FlavourTagging/src/BTagging.cpp             |  0
 Phys/FlavourTagging/src/BTagging.h               |  0
 Phys/FlavourTagging/src/BTaggingTool.cpp         |  0
 Phys/FlavourTagging/src/BTaggingTool.h           |  0
 Phys/FlavourTagging/src/CombineTaggersOSTDR.cpp  |  0
 Phys/FlavourTagging/src/CombineTaggersOSTDR.h    |  0
 Phys/FlavourTagging/src/CombineTaggersPID.cpp    |  0
 Phys/FlavourTagging/src/CombineTaggersPID.h      |  0
 .../src/CombineTaggersProbability.cpp            |  0
 .../src/CombineTaggersProbability.h              |  0
 Phys/FlavourTagging/src/CombineTaggersTDR.cpp    |  0
 Phys/FlavourTagging/src/CombineTaggersTDR.h      |  0
 Phys/FlavourTagging/src/DoubleTagging.cpp        |  0
 Phys/FlavourTagging/src/DoubleTagging.h          |  0
 Phys/FlavourTagging/src/ElectronOSWrapper.cpp    |  0
 Phys/FlavourTagging/src/ElectronOSWrapper.h      |  0
 Phys/FlavourTagging/src/ICombineTaggersTool.h    |  0
 Phys/FlavourTagging/src/INNetTool.h              |  0
 Phys/FlavourTagging/src/KaonOSWrapper.cpp        |  0
 Phys/FlavourTagging/src/KaonOSWrapper.h          |  0
 Phys/FlavourTagging/src/MCElectronOSWrapper.cpp  |  0
 Phys/FlavourTagging/src/MCElectronOSWrapper.h    |  0
 Phys/FlavourTagging/src/MCKaonOSWrapper.cpp      |  0
 Phys/FlavourTagging/src/MCKaonOSWrapper.h        |  0
 Phys/FlavourTagging/src/MCKaonSSWrapper.cpp      |  0
 Phys/FlavourTagging/src/MCKaonSSWrapper.h        |  0
 Phys/FlavourTagging/src/MCMuonOSWrapper.cpp      |  0
 Phys/FlavourTagging/src/MCMuonOSWrapper.h        |  0
 Phys/FlavourTagging/src/MCPionSSWrapper.cpp      |  0
 Phys/FlavourTagging/src/MCPionSSWrapper.h        |  0
 Phys/FlavourTagging/src/MCVertexOSWrapper.cpp    |  0
 Phys/FlavourTagging/src/MCVertexOSWrapper.h      |  0
 Phys/FlavourTagging/src/MuonOSWrapper.cpp        |  0
 Phys/FlavourTagging/src/MuonOSWrapper.h          |  0
 Phys/FlavourTagging/src/NNetTool_MLP.cpp         |  0
 Phys/FlavourTagging/src/NNetTool_MLP.h           |  0
 Phys/FlavourTagging/src/NeuralNet/NNele.h        |  0
 Phys/FlavourTagging/src/NeuralNet/NNkaon.h       |  0
 Phys/FlavourTagging/src/NeuralNet/NNkaonS.h      |  0
 Phys/FlavourTagging/src/NeuralNet/NNmuon.h       |  0
 Phys/FlavourTagging/src/NeuralNet/NNpionS.h      |  0
 Phys/FlavourTagging/src/NeuralNet/NNvtx.h        |  0
 .../src/NeuralNet/extrann/LP2011/NNele.h         |  0
 .../src/NeuralNet/extrann/LP2011/NNkaon.h        |  0
 .../src/NeuralNet/extrann/LP2011/NNkaonS.h       |  0
 .../src/NeuralNet/extrann/LP2011/NNmuon.h        |  0
 .../src/NeuralNet/extrann/LP2011/NNpionS.h       |  0
 .../src/NeuralNet/extrann/LP2011/NNvtx.h         |  0
 .../src/NeuralNet/weights/NNe_Fisher.weights.txt |  0
 .../NeuralNet/weights/NNkS_Fisher.weights.txt    |  0
 .../weights/NNk_LikelihoodD.weights.txt          |  0
 .../NeuralNet/weights/NNmu_Fisher.weights.txt    |  0
 .../weights/NNpS_LikelihoodD.weights.txt         |  0
 Phys/FlavourTagging/src/SVertexNNTool.cpp        |  0
 Phys/FlavourTagging/src/SVertexNNTool.h          |  0
 Phys/FlavourTagging/src/SVertexOneSeedTool.cpp   |  0
 Phys/FlavourTagging/src/SVertexOneSeedTool.h     |  0
 Phys/FlavourTagging/src/SVertexTool.cpp          |  0
 Phys/FlavourTagging/src/SVertexTool.h            |  0
 Phys/FlavourTagging/src/TaggerCharmTool.cpp      |  0
 Phys/FlavourTagging/src/TaggerCharmTool.h        |  0
 Phys/FlavourTagging/src/TaggerElectronTool.cpp   |  0
 Phys/FlavourTagging/src/TaggerElectronTool.h     |  0
 Phys/FlavourTagging/src/TaggerJetSameTool.cpp    |  0
 Phys/FlavourTagging/src/TaggerJetSameTool.h      |  0
 .../src/TaggerKaonOppositeTool.cpp               |  0
 Phys/FlavourTagging/src/TaggerKaonOppositeTool.h |  0
 Phys/FlavourTagging/src/TaggerKaonSameTool.cpp   |  0
 Phys/FlavourTagging/src/TaggerKaonSameTool.h     |  0
 Phys/FlavourTagging/src/TaggerMuonTool.cpp       |  0
 Phys/FlavourTagging/src/TaggerMuonTool.h         |  0
 .../src/TaggerNEWKaonOppositeTool.cpp            |  0
 .../src/TaggerNEWKaonOppositeTool.h              |  0
 .../FlavourTagging/src/TaggerNEWKaonSameTool.cpp |  0
 Phys/FlavourTagging/src/TaggerNEWKaonSameTool.h  |  0
 .../FlavourTagging/src/TaggerPionBDTSameTool.cpp |  0
 Phys/FlavourTagging/src/TaggerPionBDTSameTool.h  |  0
 Phys/FlavourTagging/src/TaggerPionSameTool.cpp   |  0
 Phys/FlavourTagging/src/TaggerPionSameTool.h     |  0
 Phys/FlavourTagging/src/TaggerProtonSameTool.cpp |  0
 Phys/FlavourTagging/src/TaggerProtonSameTool.h   |  0
 .../src/TaggerVertexChargeTool.cpp               |  0
 Phys/FlavourTagging/src/TaggerVertexChargeTool.h |  0
 Phys/FlavourTagging/src/TaggingUtils.cpp         |  0
 Phys/FlavourTagging/src/TaggingUtils.h           |  0
 Phys/FlavourTagging/src/VertexOSWrapper.cpp      |  0
 Phys/FlavourTagging/src/VertexOSWrapper.h        |  0
 Phys/FlavourTagging/summary/summaryof.cpp        |  0
 Phys/HighPtJets/src/TrackClusterFinder.cpp       |  0
 Phys/HighPtJets/src/TrackClusterFinder.h         |  0
 Phys/JetTagging/dict/JetTaggingInterface.h       |  0
 Phys/JetTagging/dict/JetTaggingInterface.xml     |  0
 Phys/JetTagging/src/LoKiSeedFinderNTrks.cpp      |  0
 Phys/JetTagging/src/LoKiSeedFinderNTrks.h        |  0
 Phys/KalmanFilter/KalmanFilter/VertexFit.h       |  0
 Phys/KalmanFilter/src/VertexFit.cpp              |  0
 Phys/LoKi/LoKi/LoKi.h                            |  0
 Phys/LoKiAlgo/LoKi/Algo.h                        |  2 +-
 Phys/LoKiAlgo/LoKi/AlgoDecorator.h               |  0
 Phys/LoKiAlgo/LoKi/AlgoTypes.h                   |  0
 Phys/LoKiAlgo/LoKi/ExtCalls.h                    |  0
 Phys/LoKiAlgo/LoKi/GetLoKiAlgo.h                 |  0
 Phys/LoKiAlgo/LoKi/LoKiAlgo.h                    |  0
 Phys/LoKiAlgo/LoKi/Loop.h                        |  0
 Phys/LoKiAlgo/LoKi/LoopChild.h                   |  0
 Phys/LoKiAlgo/LoKi/LoopDecorator.h               |  0
 Phys/LoKiAlgo/LoKi/LoopObj.h                     |  0
 Phys/LoKiAlgo/LoKi/LoopObj.icpp                  |  0
 Phys/LoKiAlgo/LoKi/PrintLoopDecay.h              |  0
 Phys/LoKiAlgo/LoKi/TupleDicts.h                  |  0
 Phys/LoKiAlgo/dict/LoKiAlgo.xml                  |  0
 Phys/LoKiAlgo/dict/LoKiAlgoDict.h                |  0
 Phys/LoKiAlgo/src/Algo.cpp                       |  4 ++--
 Phys/LoKiAlgo/src/GetLoKiAlgo.cpp                |  0
 Phys/LoKiAlgo/src/LoKiAlgo.cpp                   |  0
 Phys/LoKiAlgo/src/Loop.cpp                       |  0
 Phys/LoKiAlgo/src/LoopChild.cpp                  |  0
 Phys/LoKiAlgo/src/LoopDecorator.cpp              |  0
 Phys/LoKiAlgo/src/LoopObj.cpp                    |  0
 Phys/LoKiAlgo/src/PrintLoopDecay.cpp             |  0
 Phys/LoKiAlgo/src/TupleDicts.cpp                 |  0
 Phys/LoKiArrayFunctors/LoKi/AChild.h             |  0
 Phys/LoKiArrayFunctors/LoKi/AKinematics.h        |  0
 Phys/LoKiArrayFunctors/LoKi/AParticleCuts.h      |  0
 Phys/LoKiArrayFunctors/LoKi/AParticles.h         |  0
 Phys/LoKiArrayFunctors/LoKi/HybridEngine.h       |  0
 Phys/LoKiArrayFunctors/LoKi/HybridEngineActor.h  |  0
 Phys/LoKiArrayFunctors/LoKi/HybridLock.h         |  0
 Phys/LoKiArrayFunctors/LoKi/IHybridFactory.h     |  0
 Phys/LoKiArrayFunctors/LoKi/IHybridTool.h        |  0
 Phys/LoKiArrayFunctors/LoKi/LoKiArrayFunctors.h  |  0
 .../LoKi/LoKiArrayFunctors_dct.h                 |  0
 .../LoKiArrayFunctors/dict/LoKiArrayFunctors.xml |  0
 .../dict/LoKiArrayFunctorsDict.h                 |  0
 Phys/LoKiArrayFunctors/src/AChild.cpp            |  0
 Phys/LoKiArrayFunctors/src/AParticles.cpp        |  0
 .../src/Components/ArrayTupleTool.cpp            |  0
 .../src/Components/HybridFilterCriterion.cpp     |  0
 .../src/Components/HybridFilterParticles.cpp     |  0
 .../src/Components/HybridParticleArrayFilter.cpp |  0
 .../src/Components/HybridTool.cpp                |  0
 .../src/Components/PlotTool.cpp                  |  0
 .../src/Components/PrintTool.cpp                 |  0
 .../src/Components/TupleTool.cpp                 |  0
 Phys/LoKiArrayFunctors/src/HybridEngine.cpp      |  0
 Phys/LoKiArrayFunctors/src/HybridEngineActor.cpp |  0
 Phys/LoKiArrayFunctors/src/HybridLock.cpp        |  0
 Phys/LoKiArrayFunctors/src/IHybridFactory.cpp    |  0
 Phys/LoKiArrayFunctors/src/IHybridTool.cpp       |  0
 Phys/LoKiArrayFunctors/src/LoKiArrayFunctors.cpp |  0
 Phys/LoKiFitters/src/DecayTreeFit.cpp            | 16 ++++++++--------
 Phys/LoKiFitters/src/DirectionFitBase.cpp        |  0
 Phys/LoKiFitters/src/DirectionFitBase.h          |  0
 Phys/LoKiFitters/src/DirectionFitter.cpp         |  0
 Phys/LoKiFitters/src/DistanceCalculator.cpp      |  0
 Phys/LoKiFitters/src/DistanceCalculatorBase.cpp  |  0
 Phys/LoKiFitters/src/DistanceCalculatorBase.h    |  0
 Phys/LoKiFitters/src/FakeReFitter.cpp            |  0
 Phys/LoKiFitters/src/FitterUtils.cpp             |  0
 Phys/LoKiFitters/src/FitterUtils.h               |  0
 Phys/LoKiFitters/src/LifetimeFitter.cpp          |  0
 Phys/LoKiFitters/src/MassFitter.cpp              |  2 +-
 Phys/LoKiFitters/src/TrgDistanceCalculator.cpp   |  0
 Phys/LoKiFitters/src/VertexFitter.cpp            |  0
 Phys/LoKiFitters/src/VertexFitter.h              |  0
 Phys/LoKiJets/src/LoKiFastJetMaker.cpp           |  0
 Phys/LoKiJets/src/LoKiFastJetMaker.h             |  0
 Phys/LoKiJets/src/LoKiFastJetWithAreaMaker.cpp   |  0
 Phys/LoKiJets/src/LoKiJetMakerAlg.cpp            |  0
 Phys/LoKiJets/src/LoKiJetMakerWR2VtxAlg.cpp      |  0
 Phys/LoKiJets/src/LoKiJetParticleMaker.cpp       |  0
 Phys/LoKiJets/src/LoKiJets2JetsAlg.cpp           |  0
 Phys/LoKiJets/src/LoKiSeedConeJetMaker.cpp       |  0
 Phys/LoKiJets/src/LoKiSeedConeJetMaker.h         |  0
 Phys/LoKiJets/src/LoKiSeedFinder.cpp             |  0
 Phys/LoKiJets/src/LoKiSeedFinder.h               |  0
 Phys/LoKiJets/src/LoKiVVSeedFinder.cpp           |  0
 Phys/LoKiJets/src/LoKiVVSeedFinder.h             |  0
 Phys/LoKiPhys/LoKi/ATypes.h                      |  0
 Phys/LoKiPhys/LoKi/AuxDesktopBase.h              |  0
 Phys/LoKiPhys/LoKi/Child.h                       |  0
 Phys/LoKiPhys/LoKi/CompareParticles.h            |  0
 Phys/LoKiPhys/LoKi/Decays.h                      |  0
 Phys/LoKiPhys/LoKi/GetPhysDesktop.h              |  0
 Phys/LoKiPhys/LoKi/ImpParBase.h                  |  0
 Phys/LoKiPhys/LoKi/ImpactParamTool.h             |  0
 Phys/LoKiPhys/LoKi/LoKiPhys.h                    |  0
 Phys/LoKiPhys/LoKi/LoKiPhys_dct.h                |  0
 Phys/LoKiPhys/LoKi/PIDOperators.h                |  0
 Phys/LoKiPhys/LoKi/ParticleContextCuts.h         |  0
 Phys/LoKiPhys/LoKi/ParticleCuts.h                |  0
 Phys/LoKiPhys/LoKi/Particles.h                   |  0
 Phys/LoKiPhys/LoKi/Particles0.h                  |  0
 Phys/LoKiPhys/LoKi/Particles1.h                  |  0
 Phys/LoKiPhys/LoKi/Particles10.h                 |  0
 Phys/LoKiPhys/LoKi/Particles11.h                 |  0
 Phys/LoKiPhys/LoKi/Particles12.h                 |  0
 Phys/LoKiPhys/LoKi/Particles13.h                 |  0
 Phys/LoKiPhys/LoKi/Particles14.h                 |  0
 Phys/LoKiPhys/LoKi/Particles15.h                 |  0
 Phys/LoKiPhys/LoKi/Particles16.h                 |  0
 Phys/LoKiPhys/LoKi/Particles17.h                 |  0
 Phys/LoKiPhys/LoKi/Particles18.h                 |  0
 Phys/LoKiPhys/LoKi/Particles19.h                 |  0
 Phys/LoKiPhys/LoKi/Particles2.h                  |  0
 Phys/LoKiPhys/LoKi/Particles20.h                 |  0
 Phys/LoKiPhys/LoKi/Particles21.h                 |  0
 Phys/LoKiPhys/LoKi/Particles22.h                 |  0
 Phys/LoKiPhys/LoKi/Particles23.h                 |  0
 Phys/LoKiPhys/LoKi/Particles3.h                  |  0
 Phys/LoKiPhys/LoKi/Particles4.h                  |  0
 Phys/LoKiPhys/LoKi/Particles44.h                 |  0
 Phys/LoKiPhys/LoKi/Particles5.h                  |  0
 Phys/LoKiPhys/LoKi/Particles6.h                  |  0
 Phys/LoKiPhys/LoKi/Particles7.h                  |  0
 Phys/LoKiPhys/LoKi/Particles8.h                  |  0
 Phys/LoKiPhys/LoKi/Particles9.h                  |  0
 Phys/LoKiPhys/LoKi/PhysAlgs.h                    |  0
 Phys/LoKiPhys/LoKi/PhysAlgsDicts.h               |  0
 Phys/LoKiPhys/LoKi/PhysCnv.h                     |  0
 Phys/LoKiPhys/LoKi/PhysExtract.h                 |  0
 Phys/LoKiPhys/LoKi/PhysExtractDicts.h            |  0
 Phys/LoKiPhys/LoKi/PhysHelpers.h                 |  0
 Phys/LoKiPhys/LoKi/PhysKinematics.h              |  0
 Phys/LoKiPhys/LoKi/PhysMoniDicts.h               |  0
 Phys/LoKiPhys/LoKi/PhysRangeTypes.h              |  0
 Phys/LoKiPhys/LoKi/PhysSources.h                 |  0
 Phys/LoKiPhys/LoKi/PhysTypes.h                   |  0
 Phys/LoKiPhys/LoKi/PrintDecay.h                  |  0
 Phys/LoKiPhys/LoKi/Sections.h                    |  0
 Phys/LoKiPhys/LoKi/SelectVertex.h                |  0
 Phys/LoKiPhys/LoKi/VertexCast.h                  |  0
 Phys/LoKiPhys/LoKi/VertexContextCuts.h           |  0
 Phys/LoKiPhys/LoKi/VertexCuts.h                  |  0
 Phys/LoKiPhys/LoKi/VertexHolder.h                |  0
 Phys/LoKiPhys/LoKi/Vertices.h                    |  0
 Phys/LoKiPhys/LoKi/Vertices0.h                   |  0
 Phys/LoKiPhys/LoKi/Vertices1.h                   |  0
 Phys/LoKiPhys/LoKi/Vertices2.h                   |  0
 Phys/LoKiPhys/LoKi/Vertices5.h                   |  0
 Phys/LoKiPhys/dict/LoKiPhys.xml                  |  0
 Phys/LoKiPhys/dict/LoKiPhysDict.h                |  0
 Phys/LoKiPhys/dict/LoKiPhysFunctors.xml          |  0
 Phys/LoKiPhys/src/AuxDesktopBase.cpp             |  0
 Phys/LoKiPhys/src/Child.cpp                      |  0
 Phys/LoKiPhys/src/Decays.cpp                     |  0
 Phys/LoKiPhys/src/GetPhysDesktop.cpp             |  0
 Phys/LoKiPhys/src/ImpParBase.cpp                 |  0
 Phys/LoKiPhys/src/ImpactParamTool.cpp            |  0
 Phys/LoKiPhys/src/LoKiPhys.cpp                   |  0
 Phys/LoKiPhys/src/PIDOperators.cpp               |  0
 Phys/LoKiPhys/src/Particles.cpp                  |  0
 Phys/LoKiPhys/src/Particles0.cpp                 |  0
 Phys/LoKiPhys/src/Particles1.cpp                 |  0
 Phys/LoKiPhys/src/Particles10.cpp                |  0
 Phys/LoKiPhys/src/Particles11.cpp                |  0
 Phys/LoKiPhys/src/Particles12.cpp                |  0
 Phys/LoKiPhys/src/Particles13.cpp                |  0
 Phys/LoKiPhys/src/Particles14.cpp                |  0
 Phys/LoKiPhys/src/Particles15.cpp                |  0
 Phys/LoKiPhys/src/Particles16.cpp                |  0
 Phys/LoKiPhys/src/Particles17.cpp                |  0
 Phys/LoKiPhys/src/Particles18.cpp                |  0
 Phys/LoKiPhys/src/Particles19.cpp                |  0
 Phys/LoKiPhys/src/Particles2.cpp                 |  0
 Phys/LoKiPhys/src/Particles20.cpp                |  0
 Phys/LoKiPhys/src/Particles21.cpp                |  0
 Phys/LoKiPhys/src/Particles22.cpp                |  0
 Phys/LoKiPhys/src/Particles23.cpp                |  0
 Phys/LoKiPhys/src/Particles3.cpp                 |  0
 Phys/LoKiPhys/src/Particles4.cpp                 |  0
 Phys/LoKiPhys/src/Particles44.cpp                |  0
 Phys/LoKiPhys/src/Particles5.cpp                 |  0
 Phys/LoKiPhys/src/Particles6.cpp                 |  0
 Phys/LoKiPhys/src/Particles7.cpp                 |  0
 Phys/LoKiPhys/src/Particles8.cpp                 |  0
 Phys/LoKiPhys/src/Particles9.cpp                 |  0
 Phys/LoKiPhys/src/PhysAlgsDicts.cpp              |  0
 Phys/LoKiPhys/src/PhysCnv.cpp                    |  0
 Phys/LoKiPhys/src/PhysExtract.cpp                |  0
 Phys/LoKiPhys/src/PhysExtractDicts.cpp           |  0
 Phys/LoKiPhys/src/PhysKinematics.cpp             |  0
 Phys/LoKiPhys/src/PhysMoniDicts.cpp              |  0
 Phys/LoKiPhys/src/PhysSources.cpp                |  0
 Phys/LoKiPhys/src/PrintDecay.cpp                 |  0
 Phys/LoKiPhys/src/Sections.cpp                   |  0
 Phys/LoKiPhys/src/SelectVertex.cpp               |  0
 Phys/LoKiPhys/src/VertexHolder.cpp               |  0
 Phys/LoKiPhys/src/Vertices.cpp                   |  0
 Phys/LoKiPhys/src/Vertices0.cpp                  |  0
 Phys/LoKiPhys/src/Vertices1.cpp                  |  0
 Phys/LoKiPhys/src/Vertices2.cpp                  |  0
 Phys/LoKiPhys/src/Vertices5.cpp                  |  0
 Phys/LoKiTracks/LoKi/ITrackFunctorAntiFactory.h  |  0
 Phys/LoKiTracks/LoKi/ITrackFunctorFactory.h      |  0
 Phys/LoKiTracks/LoKi/LoKiTracks_dct.h            |  0
 Phys/LoKiTracks/LoKi/TrSources.h                 |  0
 Phys/LoKiTracks/LoKi/TrackCuts.h                 | 16 ++++++++--------
 Phys/LoKiTracks/LoKi/TrackEngine.h               |  0
 Phys/LoKiTracks/LoKi/TrackEngineActor.h          |  0
 Phys/LoKiTracks/LoKi/TrackFactoryLock.h          |  0
 Phys/LoKiTracks/LoKi/TrackTypes.h                |  0
 Phys/LoKiTracks/LoKi/Tracks.h                    |  0
 Phys/LoKiTracks/dict/LoKiTracks.xml              |  0
 Phys/LoKiTracks/dict/LoKiTracksDict.h            |  0
 .../src/Components/TrackFunctorFactory.cpp       |  0
 Phys/LoKiTracks/src/Components/TrackSelector.cpp |  2 +-
 Phys/LoKiTracks/src/ITrackFunctorAntiFactory.cpp |  0
 Phys/LoKiTracks/src/ITrackFunctorFactory.cpp     |  0
 Phys/LoKiTracks/src/TrSources.cpp                |  0
 Phys/LoKiTracks/src/TrackEngine.cpp              |  0
 Phys/LoKiTracks/src/TrackEngineActor.cpp         |  0
 Phys/LoKiTracks/src/TrackFactoryLock.cpp         |  0
 Phys/LoKiTracks/src/Tracks.cpp                   |  0
 Phys/ParticleCombiners/src/CombineParticles.cpp  |  0
 Phys/ParticleMaker/src/CombinedParticleMaker.cpp |  0
 Phys/ParticleMaker/src/CombinedParticleMaker.h   |  0
 Phys/ParticleMaker/src/MergedPi0Maker.cpp        |  0
 Phys/ParticleMaker/src/MergedPi0Maker.h          |  0
 Phys/ParticleMaker/src/NoPIDsParticleMaker.cpp   |  0
 Phys/ParticleMaker/src/NoPIDsParticleMaker.h     |  0
 Phys/ParticleMaker/src/Particle2State.cpp        |  0
 Phys/ParticleMaker/src/Particle2State.h          |  0
 Phys/ParticleMaker/src/ParticleStuffer.cpp       |  0
 Phys/ParticleMaker/src/ParticleStuffer.h         |  0
 Phys/ParticleMaker/src/PhotonMaker.cpp           |  0
 Phys/ParticleMaker/src/PhotonMaker.h             |  0
 Phys/ParticleMaker/src/ResolvedPi0Maker.cpp      |  0
 Phys/ParticleMaker/src/ResolvedPi0Maker.h        |  0
 Phys/PhysDict/dict/PhysDict.h                    |  0
 Phys/PhysDict/dict/PhysDict.xml                  |  0
 .../src/ChargedProtoParticleDLLFilter.cpp        |  0
 .../src/ChargedProtoParticleDLLFilter.h          |  0
 .../src/ProtoParticleANNPIDFilter.cpp            |  0
 .../src/ProtoParticleANNPIDFilter.h              |  0
 .../src/ProtoParticleCALOFilter.cpp              |  0
 .../src/ProtoParticleCALOFilter.h                |  0
 .../src/ProtoParticleDLLFilter.cpp               |  0
 .../src/ProtoParticleDLLFilter.h                 |  0
 .../src/ProtoParticleFilterBase.cpp              |  0
 .../src/ProtoParticleFilterBase.h                |  0
 .../src/ProtoParticleMUONFilter.cpp              |  0
 .../src/ProtoParticleMUONFilter.h                |  0
 .../src/ProtoParticleRICHFilter.cpp              |  0
 .../src/ProtoParticleRICHFilter.h                |  0
 .../src/ProtoParticleSelection.cpp               |  0
 .../src/ProtoParticleSelection.h                 |  0
 Phys/RelatedInfoTools/src/AddRelatedInfo.cpp     |  0
 Phys/RelatedInfoTools/src/AddRelatedInfo.h       |  0
 .../src/RelInfoVertexIsolationDetached.cpp       |  0
 .../src/RelInfoVertexIsolationDetached.h         |  0
 Phys/TisTosTobbing/TisTos/ParticleTisTos.h       |  0
 Phys/TisTosTobbing/TisTos/TisTos.h               |  0
 Phys/TisTosTobbing/src/L0DecReportsMaker.cpp     |  0
 Phys/TisTosTobbing/src/L0DecReportsMaker.h       |  0
 Phys/TisTosTobbing/src/L0SelReportsMaker.cpp     |  0
 Phys/TisTosTobbing/src/L0SelReportsMaker.h       |  0
 Phys/TisTosTobbing/src/TESSelectionTisTos.cpp    |  0
 Phys/TisTosTobbing/src/TESSelectionTisTos.h      |  0
 Phys/TisTosTobbing/src/TESTisTos.h               |  0
 .../TisTosTobbing/src/TriggerSelectionTisTos.cpp |  0
 Phys/TisTosTobbing/src/TriggerSelectionTisTos.h  |  0
 .../src/TriggerSelectionTisTosSummary.cpp        |  0
 .../src/TriggerSelectionTisTosSummary.h          |  0
 Phys/TisTosTobbing/src/TriggerTisTos.cpp         |  0
 Phys/TisTosTobbing/src/TriggerTisTos.h           |  0
 Phys/TisTosTobbing/src/TriggerTisTosSummary.cpp  |  0
 Phys/TisTosTobbing/src/TriggerTisTosSummary.h    |  0
 Phys/TisTosTobbing/src/lib/ParticleTisTos.cpp    |  0
 Phys/TisTosTobbing/src/lib/TisTos.cpp            |  0
 Phys/VertexFit/src/AdaptivePVReFitter.cpp        |  0
 Phys/VertexFit/src/AdaptivePVReFitter.h          |  0
 Phys/VertexFit/src/DirectionFitter.cpp           |  0
 Phys/VertexFit/src/DirectionFitter.h             |  0
 Phys/VertexFit/src/MomentumCombiner.cpp          |  0
 Phys/VertexFit/src/OfflineVertexFitter.cpp       |  0
 Phys/VertexFit/src/OfflineVertexFitter.h         |  0
 Phys/VertexFit/src/PVFitTrack.h                  |  0
 Phys/VertexFit/src/PVReFitter.cpp                |  0
 Phys/VertexFit/src/PVReFitter.h                  |  0
 Phys/VertexFit/src/PVReFitterAlg.cpp             |  0
 Phys/VertexFit/src/PVReFitterAlg.h               |  0
 Phys/VertexFit/src/ParticleAdder.cpp             |  0
 Phys/VertexFit/src/ParticleAdder.h               |  0
 Phys/VertexFit/src/PropertimeFitter.cpp          |  0
 Phys/VertexFit/src/PropertimeFitter.h            |  0
 Phys/VertexFit/src/TrgVertexFitter.cpp           |  0
 Phys/VertexFit/src/TrgVertexFitter.h             |  0
 PhysSys/doc/MainPage.h                           |  0
 529 files changed, 26 insertions(+), 26 deletions(-)
 mode change 100755 => 100644 Phys/DaVinciDecayFinder/src/DecayFinder.cpp
 mode change 100755 => 100644 Phys/DaVinciDecayFinder/src/DecayFinder.h
 mode change 100755 => 100644 Phys/DaVinciDecayFinder/src/reclexer.icpp
 mode change 100755 => 100644 Phys/DaVinciDecayFinder/src/recparser.h
 mode change 100755 => 100644 Phys/DaVinciDecayFinder/src/recparser.icpp
 mode change 100755 => 100644 Phys/DaVinciFilters/src/FilterDesktop.cpp
 mode change 100755 => 100644 Phys/DaVinciFilters/src/FilterDesktop.h
 mode change 100755 => 100644 Phys/DaVinciFilters/src/FilterEventList.cpp
 mode change 100755 => 100644 Phys/DaVinciFilters/src/FilterEventList.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IBTaggingTool.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IBremAdder.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/ICaloParticleMaker.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IChangePIDTool.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/ICheckOverlap.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/ICheckSelResults.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IDecayFinder.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IDecodeSimpleDecayString.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IDirectionFit.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IDistanceCalculator.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IFilterParticles.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IJetMaker.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/ILifetimeFitter.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IMassFit.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IP2VVAngleCalculator.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IP2VVPartAngleCalculator.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IPVReFitter.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IParticle2State.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IParticleArrayFilter.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IParticleCombiner.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IParticleDescendants.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IParticleFilter.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IParticleMaker.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IParticleReFitter.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IParticleStuffer.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IParticleTisTos.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IParticleTransporter.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IParticleTupleTool.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IParticleValue.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IPlotTool.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IPrintDecay.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IProtoParticleFilter.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IRelatedPVFinder.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/ISecondaryVertexTool.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/ISetInputParticles.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IStandardParticleProvider.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/ITagger.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/ITisTos.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/ITriggerSelectionTisTos.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/ITriggerTisTos.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/Kernel/IVertexFit.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/dict/DaVinciInterfacesDict.h
 mode change 100755 => 100644 Phys/DaVinciInterfaces/dict/DaVinciInterfacesDict.xml
 mode change 100755 => 100644 Phys/DaVinciKernel/Kernel/DaVinciStringUtils.h
 mode change 100755 => 100644 Phys/DaVinciKernel/Kernel/FilterParticlesBase.h
 mode change 100755 => 100644 Phys/DaVinciKernel/Kernel/GetDecay.h
 mode change 100755 => 100644 Phys/DaVinciKernel/Kernel/GetParticlesForDecay.h
 mode change 100755 => 100644 Phys/DaVinciKernel/Kernel/PP2MCLocation.h
 mode change 100755 => 100644 Phys/DaVinciKernel/Kernel/TransporterFunctions.h
 mode change 100755 => 100644 Phys/DaVinciKernel/dict/DaVinciKernelDict.h
 mode change 100755 => 100644 Phys/DaVinciKernel/dict/DaVinciKernelDict.xml
 mode change 100755 => 100644 Phys/DaVinciKernel/src/Lib/FilterParticlesBase.cpp
 mode change 100755 => 100644 Phys/DaVinciKernel/src/Lib/GetDecay.cpp
 mode change 100755 => 100644 Phys/DaVinciKernel/src/component/DaVinciInit.cpp
 mode change 100755 => 100644 Phys/DaVinciKernel/src/component/DaVinciInit.h
 mode change 100755 => 100644 Phys/DaVinciKernel/src/component/DecodeSimpleDecayString.cpp
 mode change 100755 => 100644 Phys/DaVinciKernel/src/component/DecodeSimpleDecayString.h
 mode change 100755 => 100644 Phys/DaVinciMCKernel/Kernel/FilterMCParticlesBase.h
 mode change 100755 => 100644 Phys/DaVinciMCKernel/Kernel/HepMC2MC.h
 mode change 100755 => 100644 Phys/DaVinciMCKernel/Kernel/IBackgroundCategory.h
 mode change 100755 => 100644 Phys/DaVinciMCKernel/Kernel/ICheatedLifetimeFitter.h
 mode change 100755 => 100644 Phys/DaVinciMCKernel/Kernel/IDaVinciAssociatorsWrapper.h
 mode change 100755 => 100644 Phys/DaVinciMCKernel/Kernel/IFilterMCParticles.h
 mode change 100755 => 100644 Phys/DaVinciMCKernel/Kernel/IHepMC2MC.h
 mode change 100755 => 100644 Phys/DaVinciMCKernel/Kernel/IMC2Collision.h
 mode change 100755 => 100644 Phys/DaVinciMCKernel/Kernel/IMCParticleArrayFilter.h
 mode change 100755 => 100644 Phys/DaVinciMCKernel/Kernel/IMCParticleTupleTool.h
 mode change 100755 => 100644 Phys/DaVinciMCKernel/Kernel/IP2VVMCPartAngleCalculator.h
 mode change 100755 => 100644 Phys/DaVinciMCKernel/Kernel/IPV2MC.h
 mode change 100755 => 100644 Phys/DaVinciMCKernel/Kernel/IPrintDecayTreeTool.h
 mode change 100755 => 100644 Phys/DaVinciMCKernel/Kernel/MC2Collision.h
 mode change 100755 => 100644 Phys/DaVinciMCKernel/Kernel/MCParticleMakerBase.h
 mode change 100755 => 100644 Phys/DaVinciMCKernel/Kernel/PV2MC.h
 mode change 100755 => 100644 Phys/DaVinciMCKernel/Kernel/Particle2MC.h
 mode change 100755 => 100644 Phys/DaVinciMCKernel/Kernel/RC2HepMC.h
 mode change 100755 => 100644 Phys/DaVinciMCKernel/Kernel/Track2MC.h
 mode change 100755 => 100644 Phys/DaVinciMCKernel/dict/DaVinciMCKernelDict.h
 mode change 100755 => 100644 Phys/DaVinciMCKernel/dict/DaVinciMCKernelDict.xml
 mode change 100755 => 100644 Phys/DaVinciMCKernel/src/Lib/FilterMCParticlesBase.cpp
 mode change 100755 => 100644 Phys/DaVinciMCKernel/src/Lib/IHepMC2MC.cpp
 mode change 100755 => 100644 Phys/DaVinciMCKernel/src/Lib/IMC2Collision.cpp
 mode change 100755 => 100644 Phys/DaVinciMCKernel/src/Lib/IPV2MC.cpp
 mode change 100755 => 100644 Phys/DaVinciMCKernel/src/Lib/MC2Collision.cpp
 mode change 100755 => 100644 Phys/DaVinciMCKernel/src/Lib/MCParticleMakerBase.cpp
 mode change 100755 => 100644 Phys/DaVinciNeutralTools/src/BremAdder.cpp
 mode change 100755 => 100644 Phys/DaVinciNeutralTools/src/BremAdder.h
 mode change 100755 => 100644 Phys/DaVinciNeutralTools/src/ConjugateNeutralPID.cpp
 mode change 100755 => 100644 Phys/DaVinciNeutralTools/src/ConjugateNeutralPID.h
 mode change 100755 => 100644 Phys/DaVinciNeutralTools/src/NeutralCCChangePIDTool.cpp
 mode change 100755 => 100644 Phys/DaVinciNeutralTools/src/NeutralCCChangePIDTool.h
 mode change 100755 => 100644 Phys/DaVinciOverlapsAndClones/src/CheckOverlap.cpp
 mode change 100755 => 100644 Phys/DaVinciOverlapsAndClones/src/CheckOverlap.h
 mode change 100755 => 100644 Phys/DaVinciOverlapsAndClones/src/CheckVeloOverlap.cpp
 mode change 100755 => 100644 Phys/DaVinciOverlapsAndClones/src/CheckVeloOverlap.h
 mode change 100755 => 100644 Phys/DaVinciOverlapsAndClones/src/FindCloneTool.cpp
 mode change 100755 => 100644 Phys/DaVinciOverlapsAndClones/src/FindCloneTool.h
 mode change 100755 => 100644 Phys/DaVinciOverlapsAndClones/src/PrintDuplicates.cpp
 mode change 100755 => 100644 Phys/DaVinciOverlapsAndClones/src/PrintDuplicates.h
 mode change 100755 => 100644 Phys/DaVinciOverlapsAndClones/src/RemoveClones.cpp
 mode change 100755 => 100644 Phys/DaVinciOverlapsAndClones/src/RemoveClones.h
 mode change 100755 => 100644 Phys/DaVinciOverlapsAndClones/src/RemoveDuplicates.cpp
 mode change 100755 => 100644 Phys/DaVinciOverlapsAndClones/src/RemoveDuplicates.h
 mode change 100755 => 100644 Phys/DaVinciPVTools/src/CheckPV.cpp
 mode change 100755 => 100644 Phys/DaVinciPVTools/src/CheckPV.h
 mode change 100755 => 100644 Phys/DaVinciPVTools/src/DistanceCalculatorNames.cpp
 mode change 100755 => 100644 Phys/DaVinciPVTools/src/DistanceCalculatorNames.h
 mode change 100755 => 100644 Phys/DaVinciPVTools/src/GenericParticle2PVRelator.h
 mode change 100755 => 100644 Phys/DaVinciPVTools/src/OnlineP2PVWithIP.cpp
 mode change 100755 => 100644 Phys/DaVinciPVTools/src/OnlineP2PVWithIPChi2.cpp
 mode change 100755 => 100644 Phys/DaVinciPVTools/src/P2PVLogic.h
 mode change 100755 => 100644 Phys/DaVinciPVTools/src/P2PVWithIP.cpp
 mode change 100755 => 100644 Phys/DaVinciPVTools/src/P2PVWithIPChi2.cpp
 mode change 100755 => 100644 Phys/DaVinciTools/src/AlgorithmCorrelationsAlg.cpp
 mode change 100755 => 100644 Phys/DaVinciTools/src/AlgorithmCorrelationsAlg.h
 mode change 100755 => 100644 Phys/DaVinciTools/src/CheckSelResult.cpp
 mode change 100755 => 100644 Phys/DaVinciTools/src/CheckSelResult.h
 mode change 100755 => 100644 Phys/DaVinciTools/src/CheckSelResultsTool.cpp
 mode change 100755 => 100644 Phys/DaVinciTools/src/CheckSelResultsTool.h
 mode change 100755 => 100644 Phys/DaVinciTools/src/CountParticles.cpp
 mode change 100755 => 100644 Phys/DaVinciTools/src/ParticleDescendants.cpp
 mode change 100755 => 100644 Phys/DaVinciTools/src/ParticleDescendants.h
 mode change 100755 => 100644 Phys/DaVinciTools/src/PrintDecayTree.cpp
 mode change 100755 => 100644 Phys/DaVinciTransporter/src/ParticleTransporter.cpp
 mode change 100755 => 100644 Phys/DaVinciTransporter/src/ParticleTransporter.h
 mode change 100755 => 100644 Phys/DaVinciTypes/Kernel/Particle2Vertex.h
 mode change 100755 => 100644 Phys/DaVinciTypes/dict/DaVinciTypes.xml
 mode change 100755 => 100644 Phys/DaVinciTypes/dict/DaVinciTypesDict.h
 mode change 100755 => 100644 Phys/ExtraInfoTools/src/AddExtraInfo.cpp
 mode change 100755 => 100644 Phys/ExtraInfoTools/src/AddExtraInfo.h
 mode change 100755 => 100644 Phys/FlavourTagging/FlavourTagging/ITaggingUtils.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/BTagging.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/BTagging.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/BTaggingTool.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/BTaggingTool.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/CombineTaggersOSTDR.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/CombineTaggersOSTDR.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/CombineTaggersPID.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/CombineTaggersPID.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/CombineTaggersProbability.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/CombineTaggersProbability.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/CombineTaggersTDR.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/CombineTaggersTDR.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/DoubleTagging.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/DoubleTagging.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/ElectronOSWrapper.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/ElectronOSWrapper.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/ICombineTaggersTool.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/INNetTool.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/KaonOSWrapper.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/KaonOSWrapper.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/MCElectronOSWrapper.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/MCElectronOSWrapper.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/MCKaonOSWrapper.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/MCKaonOSWrapper.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/MCKaonSSWrapper.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/MCKaonSSWrapper.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/MCMuonOSWrapper.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/MCMuonOSWrapper.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/MCPionSSWrapper.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/MCPionSSWrapper.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/MCVertexOSWrapper.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/MCVertexOSWrapper.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/MuonOSWrapper.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/MuonOSWrapper.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/NNetTool_MLP.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/NNetTool_MLP.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/NeuralNet/NNele.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/NeuralNet/NNkaon.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/NeuralNet/NNkaonS.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/NeuralNet/NNmuon.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/NeuralNet/NNpionS.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/NeuralNet/NNvtx.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/NeuralNet/extrann/LP2011/NNele.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/NeuralNet/extrann/LP2011/NNkaon.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/NeuralNet/extrann/LP2011/NNkaonS.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/NeuralNet/extrann/LP2011/NNmuon.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/NeuralNet/extrann/LP2011/NNpionS.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/NeuralNet/extrann/LP2011/NNvtx.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/NeuralNet/weights/NNe_Fisher.weights.txt
 mode change 100755 => 100644 Phys/FlavourTagging/src/NeuralNet/weights/NNkS_Fisher.weights.txt
 mode change 100755 => 100644 Phys/FlavourTagging/src/NeuralNet/weights/NNk_LikelihoodD.weights.txt
 mode change 100755 => 100644 Phys/FlavourTagging/src/NeuralNet/weights/NNmu_Fisher.weights.txt
 mode change 100755 => 100644 Phys/FlavourTagging/src/NeuralNet/weights/NNpS_LikelihoodD.weights.txt
 mode change 100755 => 100644 Phys/FlavourTagging/src/SVertexNNTool.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/SVertexNNTool.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/SVertexOneSeedTool.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/SVertexOneSeedTool.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/SVertexTool.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/SVertexTool.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/TaggerCharmTool.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/TaggerCharmTool.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/TaggerElectronTool.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/TaggerElectronTool.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/TaggerJetSameTool.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/TaggerJetSameTool.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/TaggerKaonOppositeTool.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/TaggerKaonOppositeTool.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/TaggerKaonSameTool.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/TaggerKaonSameTool.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/TaggerMuonTool.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/TaggerMuonTool.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/TaggerNEWKaonOppositeTool.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/TaggerNEWKaonOppositeTool.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/TaggerNEWKaonSameTool.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/TaggerNEWKaonSameTool.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/TaggerPionBDTSameTool.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/TaggerPionBDTSameTool.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/TaggerPionSameTool.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/TaggerPionSameTool.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/TaggerProtonSameTool.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/TaggerProtonSameTool.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/TaggerVertexChargeTool.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/TaggerVertexChargeTool.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/TaggingUtils.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/TaggingUtils.h
 mode change 100755 => 100644 Phys/FlavourTagging/src/VertexOSWrapper.cpp
 mode change 100755 => 100644 Phys/FlavourTagging/src/VertexOSWrapper.h
 mode change 100755 => 100644 Phys/FlavourTagging/summary/summaryof.cpp
 mode change 100755 => 100644 Phys/HighPtJets/src/TrackClusterFinder.cpp
 mode change 100755 => 100644 Phys/HighPtJets/src/TrackClusterFinder.h
 mode change 100755 => 100644 Phys/JetTagging/dict/JetTaggingInterface.h
 mode change 100755 => 100644 Phys/JetTagging/dict/JetTaggingInterface.xml
 mode change 100755 => 100644 Phys/JetTagging/src/LoKiSeedFinderNTrks.cpp
 mode change 100755 => 100644 Phys/JetTagging/src/LoKiSeedFinderNTrks.h
 mode change 100755 => 100644 Phys/KalmanFilter/KalmanFilter/VertexFit.h
 mode change 100755 => 100644 Phys/KalmanFilter/src/VertexFit.cpp
 mode change 100755 => 100644 Phys/LoKi/LoKi/LoKi.h
 mode change 100755 => 100644 Phys/LoKiAlgo/LoKi/Algo.h
 mode change 100755 => 100644 Phys/LoKiAlgo/LoKi/AlgoDecorator.h
 mode change 100755 => 100644 Phys/LoKiAlgo/LoKi/AlgoTypes.h
 mode change 100755 => 100644 Phys/LoKiAlgo/LoKi/ExtCalls.h
 mode change 100755 => 100644 Phys/LoKiAlgo/LoKi/GetLoKiAlgo.h
 mode change 100755 => 100644 Phys/LoKiAlgo/LoKi/LoKiAlgo.h
 mode change 100755 => 100644 Phys/LoKiAlgo/LoKi/Loop.h
 mode change 100755 => 100644 Phys/LoKiAlgo/LoKi/LoopChild.h
 mode change 100755 => 100644 Phys/LoKiAlgo/LoKi/LoopDecorator.h
 mode change 100755 => 100644 Phys/LoKiAlgo/LoKi/LoopObj.h
 mode change 100755 => 100644 Phys/LoKiAlgo/LoKi/LoopObj.icpp
 mode change 100755 => 100644 Phys/LoKiAlgo/LoKi/PrintLoopDecay.h
 mode change 100755 => 100644 Phys/LoKiAlgo/LoKi/TupleDicts.h
 mode change 100755 => 100644 Phys/LoKiAlgo/dict/LoKiAlgo.xml
 mode change 100755 => 100644 Phys/LoKiAlgo/dict/LoKiAlgoDict.h
 mode change 100755 => 100644 Phys/LoKiAlgo/src/Algo.cpp
 mode change 100755 => 100644 Phys/LoKiAlgo/src/GetLoKiAlgo.cpp
 mode change 100755 => 100644 Phys/LoKiAlgo/src/LoKiAlgo.cpp
 mode change 100755 => 100644 Phys/LoKiAlgo/src/Loop.cpp
 mode change 100755 => 100644 Phys/LoKiAlgo/src/LoopChild.cpp
 mode change 100755 => 100644 Phys/LoKiAlgo/src/LoopDecorator.cpp
 mode change 100755 => 100644 Phys/LoKiAlgo/src/LoopObj.cpp
 mode change 100755 => 100644 Phys/LoKiAlgo/src/PrintLoopDecay.cpp
 mode change 100755 => 100644 Phys/LoKiAlgo/src/TupleDicts.cpp
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/LoKi/AChild.h
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/LoKi/AKinematics.h
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/LoKi/AParticleCuts.h
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/LoKi/AParticles.h
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/LoKi/HybridEngine.h
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/LoKi/HybridEngineActor.h
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/LoKi/HybridLock.h
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/LoKi/IHybridFactory.h
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/LoKi/IHybridTool.h
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/LoKi/LoKiArrayFunctors.h
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/LoKi/LoKiArrayFunctors_dct.h
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/dict/LoKiArrayFunctors.xml
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/dict/LoKiArrayFunctorsDict.h
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/src/AChild.cpp
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/src/AParticles.cpp
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/src/Components/ArrayTupleTool.cpp
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/src/Components/HybridFilterCriterion.cpp
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/src/Components/HybridFilterParticles.cpp
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/src/Components/HybridParticleArrayFilter.cpp
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/src/Components/HybridTool.cpp
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/src/Components/PlotTool.cpp
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/src/Components/PrintTool.cpp
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/src/Components/TupleTool.cpp
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/src/HybridEngine.cpp
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/src/HybridEngineActor.cpp
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/src/HybridLock.cpp
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/src/IHybridFactory.cpp
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/src/IHybridTool.cpp
 mode change 100755 => 100644 Phys/LoKiArrayFunctors/src/LoKiArrayFunctors.cpp
 mode change 100755 => 100644 Phys/LoKiFitters/src/DirectionFitBase.cpp
 mode change 100755 => 100644 Phys/LoKiFitters/src/DirectionFitBase.h
 mode change 100755 => 100644 Phys/LoKiFitters/src/DirectionFitter.cpp
 mode change 100755 => 100644 Phys/LoKiFitters/src/DistanceCalculator.cpp
 mode change 100755 => 100644 Phys/LoKiFitters/src/DistanceCalculatorBase.cpp
 mode change 100755 => 100644 Phys/LoKiFitters/src/DistanceCalculatorBase.h
 mode change 100755 => 100644 Phys/LoKiFitters/src/FakeReFitter.cpp
 mode change 100755 => 100644 Phys/LoKiFitters/src/FitterUtils.cpp
 mode change 100755 => 100644 Phys/LoKiFitters/src/FitterUtils.h
 mode change 100755 => 100644 Phys/LoKiFitters/src/LifetimeFitter.cpp
 mode change 100755 => 100644 Phys/LoKiFitters/src/MassFitter.cpp
 mode change 100755 => 100644 Phys/LoKiFitters/src/TrgDistanceCalculator.cpp
 mode change 100755 => 100644 Phys/LoKiFitters/src/VertexFitter.cpp
 mode change 100755 => 100644 Phys/LoKiFitters/src/VertexFitter.h
 mode change 100755 => 100644 Phys/LoKiJets/src/LoKiFastJetMaker.cpp
 mode change 100755 => 100644 Phys/LoKiJets/src/LoKiFastJetMaker.h
 mode change 100755 => 100644 Phys/LoKiJets/src/LoKiFastJetWithAreaMaker.cpp
 mode change 100755 => 100644 Phys/LoKiJets/src/LoKiJetMakerAlg.cpp
 mode change 100755 => 100644 Phys/LoKiJets/src/LoKiJetMakerWR2VtxAlg.cpp
 mode change 100755 => 100644 Phys/LoKiJets/src/LoKiJetParticleMaker.cpp
 mode change 100755 => 100644 Phys/LoKiJets/src/LoKiJets2JetsAlg.cpp
 mode change 100755 => 100644 Phys/LoKiJets/src/LoKiSeedConeJetMaker.cpp
 mode change 100755 => 100644 Phys/LoKiJets/src/LoKiSeedConeJetMaker.h
 mode change 100755 => 100644 Phys/LoKiJets/src/LoKiSeedFinder.cpp
 mode change 100755 => 100644 Phys/LoKiJets/src/LoKiSeedFinder.h
 mode change 100755 => 100644 Phys/LoKiJets/src/LoKiVVSeedFinder.cpp
 mode change 100755 => 100644 Phys/LoKiJets/src/LoKiVVSeedFinder.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/ATypes.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/AuxDesktopBase.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Child.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/CompareParticles.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Decays.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/GetPhysDesktop.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/ImpParBase.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/ImpactParamTool.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/LoKiPhys.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/LoKiPhys_dct.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/PIDOperators.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/ParticleContextCuts.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/ParticleCuts.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Particles.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Particles0.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Particles1.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Particles10.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Particles11.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Particles12.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Particles13.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Particles14.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Particles15.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Particles16.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Particles17.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Particles18.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Particles19.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Particles2.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Particles20.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Particles21.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Particles22.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Particles23.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Particles3.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Particles4.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Particles44.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Particles5.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Particles6.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Particles7.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Particles8.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Particles9.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/PhysAlgs.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/PhysAlgsDicts.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/PhysCnv.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/PhysExtract.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/PhysExtractDicts.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/PhysHelpers.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/PhysKinematics.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/PhysMoniDicts.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/PhysRangeTypes.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/PhysSources.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/PhysTypes.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/PrintDecay.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Sections.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/SelectVertex.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/VertexCast.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/VertexContextCuts.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/VertexCuts.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/VertexHolder.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Vertices.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Vertices0.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Vertices1.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Vertices2.h
 mode change 100755 => 100644 Phys/LoKiPhys/LoKi/Vertices5.h
 mode change 100755 => 100644 Phys/LoKiPhys/dict/LoKiPhys.xml
 mode change 100755 => 100644 Phys/LoKiPhys/dict/LoKiPhysDict.h
 mode change 100755 => 100644 Phys/LoKiPhys/dict/LoKiPhysFunctors.xml
 mode change 100755 => 100644 Phys/LoKiPhys/src/AuxDesktopBase.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Child.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Decays.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/GetPhysDesktop.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/ImpParBase.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/ImpactParamTool.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/LoKiPhys.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/PIDOperators.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Particles.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Particles0.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Particles1.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Particles10.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Particles11.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Particles12.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Particles13.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Particles14.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Particles15.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Particles16.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Particles17.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Particles18.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Particles19.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Particles2.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Particles20.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Particles21.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Particles22.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Particles23.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Particles3.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Particles4.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Particles44.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Particles5.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Particles6.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Particles7.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Particles8.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Particles9.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/PhysAlgsDicts.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/PhysCnv.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/PhysExtract.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/PhysExtractDicts.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/PhysKinematics.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/PhysMoniDicts.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/PhysSources.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/PrintDecay.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Sections.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/SelectVertex.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/VertexHolder.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Vertices.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Vertices0.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Vertices1.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Vertices2.cpp
 mode change 100755 => 100644 Phys/LoKiPhys/src/Vertices5.cpp
 mode change 100755 => 100644 Phys/LoKiTracks/LoKi/ITrackFunctorAntiFactory.h
 mode change 100755 => 100644 Phys/LoKiTracks/LoKi/ITrackFunctorFactory.h
 mode change 100755 => 100644 Phys/LoKiTracks/LoKi/LoKiTracks_dct.h
 mode change 100755 => 100644 Phys/LoKiTracks/LoKi/TrSources.h
 mode change 100755 => 100644 Phys/LoKiTracks/LoKi/TrackCuts.h
 mode change 100755 => 100644 Phys/LoKiTracks/LoKi/TrackEngine.h
 mode change 100755 => 100644 Phys/LoKiTracks/LoKi/TrackEngineActor.h
 mode change 100755 => 100644 Phys/LoKiTracks/LoKi/TrackFactoryLock.h
 mode change 100755 => 100644 Phys/LoKiTracks/LoKi/TrackTypes.h
 mode change 100755 => 100644 Phys/LoKiTracks/LoKi/Tracks.h
 mode change 100755 => 100644 Phys/LoKiTracks/dict/LoKiTracks.xml
 mode change 100755 => 100644 Phys/LoKiTracks/dict/LoKiTracksDict.h
 mode change 100755 => 100644 Phys/LoKiTracks/src/Components/TrackFunctorFactory.cpp
 mode change 100755 => 100644 Phys/LoKiTracks/src/Components/TrackSelector.cpp
 mode change 100755 => 100644 Phys/LoKiTracks/src/ITrackFunctorAntiFactory.cpp
 mode change 100755 => 100644 Phys/LoKiTracks/src/ITrackFunctorFactory.cpp
 mode change 100755 => 100644 Phys/LoKiTracks/src/TrSources.cpp
 mode change 100755 => 100644 Phys/LoKiTracks/src/TrackEngine.cpp
 mode change 100755 => 100644 Phys/LoKiTracks/src/TrackEngineActor.cpp
 mode change 100755 => 100644 Phys/LoKiTracks/src/TrackFactoryLock.cpp
 mode change 100755 => 100644 Phys/LoKiTracks/src/Tracks.cpp
 mode change 100755 => 100644 Phys/ParticleCombiners/src/CombineParticles.cpp
 mode change 100755 => 100644 Phys/ParticleMaker/src/CombinedParticleMaker.cpp
 mode change 100755 => 100644 Phys/ParticleMaker/src/CombinedParticleMaker.h
 mode change 100755 => 100644 Phys/ParticleMaker/src/MergedPi0Maker.cpp
 mode change 100755 => 100644 Phys/ParticleMaker/src/MergedPi0Maker.h
 mode change 100755 => 100644 Phys/ParticleMaker/src/NoPIDsParticleMaker.cpp
 mode change 100755 => 100644 Phys/ParticleMaker/src/NoPIDsParticleMaker.h
 mode change 100755 => 100644 Phys/ParticleMaker/src/Particle2State.cpp
 mode change 100755 => 100644 Phys/ParticleMaker/src/Particle2State.h
 mode change 100755 => 100644 Phys/ParticleMaker/src/ParticleStuffer.cpp
 mode change 100755 => 100644 Phys/ParticleMaker/src/ParticleStuffer.h
 mode change 100755 => 100644 Phys/ParticleMaker/src/PhotonMaker.cpp
 mode change 100755 => 100644 Phys/ParticleMaker/src/PhotonMaker.h
 mode change 100755 => 100644 Phys/ParticleMaker/src/ResolvedPi0Maker.cpp
 mode change 100755 => 100644 Phys/ParticleMaker/src/ResolvedPi0Maker.h
 mode change 100755 => 100644 Phys/PhysDict/dict/PhysDict.h
 mode change 100755 => 100644 Phys/PhysDict/dict/PhysDict.xml
 mode change 100755 => 100644 Phys/ProtoParticleFilter/src/ChargedProtoParticleDLLFilter.cpp
 mode change 100755 => 100644 Phys/ProtoParticleFilter/src/ChargedProtoParticleDLLFilter.h
 mode change 100755 => 100644 Phys/ProtoParticleFilter/src/ProtoParticleANNPIDFilter.cpp
 mode change 100755 => 100644 Phys/ProtoParticleFilter/src/ProtoParticleANNPIDFilter.h
 mode change 100755 => 100644 Phys/ProtoParticleFilter/src/ProtoParticleCALOFilter.cpp
 mode change 100755 => 100644 Phys/ProtoParticleFilter/src/ProtoParticleCALOFilter.h
 mode change 100755 => 100644 Phys/ProtoParticleFilter/src/ProtoParticleDLLFilter.cpp
 mode change 100755 => 100644 Phys/ProtoParticleFilter/src/ProtoParticleDLLFilter.h
 mode change 100755 => 100644 Phys/ProtoParticleFilter/src/ProtoParticleFilterBase.cpp
 mode change 100755 => 100644 Phys/ProtoParticleFilter/src/ProtoParticleFilterBase.h
 mode change 100755 => 100644 Phys/ProtoParticleFilter/src/ProtoParticleMUONFilter.cpp
 mode change 100755 => 100644 Phys/ProtoParticleFilter/src/ProtoParticleMUONFilter.h
 mode change 100755 => 100644 Phys/ProtoParticleFilter/src/ProtoParticleRICHFilter.cpp
 mode change 100755 => 100644 Phys/ProtoParticleFilter/src/ProtoParticleRICHFilter.h
 mode change 100755 => 100644 Phys/ProtoParticleFilter/src/ProtoParticleSelection.cpp
 mode change 100755 => 100644 Phys/ProtoParticleFilter/src/ProtoParticleSelection.h
 mode change 100755 => 100644 Phys/RelatedInfoTools/src/AddRelatedInfo.cpp
 mode change 100755 => 100644 Phys/RelatedInfoTools/src/AddRelatedInfo.h
 mode change 100755 => 100644 Phys/RelatedInfoTools/src/RelInfoVertexIsolationDetached.cpp
 mode change 100755 => 100644 Phys/RelatedInfoTools/src/RelInfoVertexIsolationDetached.h
 mode change 100755 => 100644 Phys/TisTosTobbing/TisTos/ParticleTisTos.h
 mode change 100755 => 100644 Phys/TisTosTobbing/TisTos/TisTos.h
 mode change 100755 => 100644 Phys/TisTosTobbing/src/L0DecReportsMaker.cpp
 mode change 100755 => 100644 Phys/TisTosTobbing/src/L0DecReportsMaker.h
 mode change 100755 => 100644 Phys/TisTosTobbing/src/L0SelReportsMaker.cpp
 mode change 100755 => 100644 Phys/TisTosTobbing/src/L0SelReportsMaker.h
 mode change 100755 => 100644 Phys/TisTosTobbing/src/TESSelectionTisTos.cpp
 mode change 100755 => 100644 Phys/TisTosTobbing/src/TESSelectionTisTos.h
 mode change 100755 => 100644 Phys/TisTosTobbing/src/TESTisTos.h
 mode change 100755 => 100644 Phys/TisTosTobbing/src/TriggerSelectionTisTos.cpp
 mode change 100755 => 100644 Phys/TisTosTobbing/src/TriggerSelectionTisTos.h
 mode change 100755 => 100644 Phys/TisTosTobbing/src/TriggerSelectionTisTosSummary.cpp
 mode change 100755 => 100644 Phys/TisTosTobbing/src/TriggerSelectionTisTosSummary.h
 mode change 100755 => 100644 Phys/TisTosTobbing/src/TriggerTisTos.cpp
 mode change 100755 => 100644 Phys/TisTosTobbing/src/TriggerTisTos.h
 mode change 100755 => 100644 Phys/TisTosTobbing/src/TriggerTisTosSummary.cpp
 mode change 100755 => 100644 Phys/TisTosTobbing/src/TriggerTisTosSummary.h
 mode change 100755 => 100644 Phys/TisTosTobbing/src/lib/ParticleTisTos.cpp
 mode change 100755 => 100644 Phys/TisTosTobbing/src/lib/TisTos.cpp
 mode change 100755 => 100644 Phys/VertexFit/src/AdaptivePVReFitter.cpp
 mode change 100755 => 100644 Phys/VertexFit/src/AdaptivePVReFitter.h
 mode change 100755 => 100644 Phys/VertexFit/src/DirectionFitter.cpp
 mode change 100755 => 100644 Phys/VertexFit/src/DirectionFitter.h
 mode change 100755 => 100644 Phys/VertexFit/src/MomentumCombiner.cpp
 mode change 100755 => 100644 Phys/VertexFit/src/OfflineVertexFitter.cpp
 mode change 100755 => 100644 Phys/VertexFit/src/OfflineVertexFitter.h
 mode change 100755 => 100644 Phys/VertexFit/src/PVFitTrack.h
 mode change 100755 => 100644 Phys/VertexFit/src/PVReFitter.cpp
 mode change 100755 => 100644 Phys/VertexFit/src/PVReFitter.h
 mode change 100755 => 100644 Phys/VertexFit/src/PVReFitterAlg.cpp
 mode change 100755 => 100644 Phys/VertexFit/src/PVReFitterAlg.h
 mode change 100755 => 100644 Phys/VertexFit/src/ParticleAdder.cpp
 mode change 100755 => 100644 Phys/VertexFit/src/ParticleAdder.h
 mode change 100755 => 100644 Phys/VertexFit/src/PropertimeFitter.cpp
 mode change 100755 => 100644 Phys/VertexFit/src/PropertimeFitter.h
 mode change 100755 => 100644 Phys/VertexFit/src/TrgVertexFitter.cpp
 mode change 100755 => 100644 Phys/VertexFit/src/TrgVertexFitter.h
 mode change 100755 => 100644 PhysSys/doc/MainPage.h

diff --git a/Phys/DaVinciDecayFinder/src/DecayFinder.cpp b/Phys/DaVinciDecayFinder/src/DecayFinder.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciDecayFinder/src/DecayFinder.h b/Phys/DaVinciDecayFinder/src/DecayFinder.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciDecayFinder/src/reclexer.icpp b/Phys/DaVinciDecayFinder/src/reclexer.icpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciDecayFinder/src/recparser.h b/Phys/DaVinciDecayFinder/src/recparser.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciDecayFinder/src/recparser.icpp b/Phys/DaVinciDecayFinder/src/recparser.icpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciFilters/src/FilterDesktop.cpp b/Phys/DaVinciFilters/src/FilterDesktop.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciFilters/src/FilterDesktop.h b/Phys/DaVinciFilters/src/FilterDesktop.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciFilters/src/FilterEventList.cpp b/Phys/DaVinciFilters/src/FilterEventList.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciFilters/src/FilterEventList.h b/Phys/DaVinciFilters/src/FilterEventList.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IBTaggingTool.h b/Phys/DaVinciInterfaces/Kernel/IBTaggingTool.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IBremAdder.h b/Phys/DaVinciInterfaces/Kernel/IBremAdder.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/ICaloParticleMaker.h b/Phys/DaVinciInterfaces/Kernel/ICaloParticleMaker.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IChangePIDTool.h b/Phys/DaVinciInterfaces/Kernel/IChangePIDTool.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/ICheckOverlap.h b/Phys/DaVinciInterfaces/Kernel/ICheckOverlap.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/ICheckSelResults.h b/Phys/DaVinciInterfaces/Kernel/ICheckSelResults.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IDecayFinder.h b/Phys/DaVinciInterfaces/Kernel/IDecayFinder.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IDecayTreeFit.h b/Phys/DaVinciInterfaces/Kernel/IDecayTreeFit.h
index ba7d21a3d..0d37f1b81 100644
--- a/Phys/DaVinciInterfaces/Kernel/IDecayTreeFit.h
+++ b/Phys/DaVinciInterfaces/Kernel/IDecayTreeFit.h
@@ -110,7 +110,7 @@ public:
    *     {  
    *        info () << " Fitted 4-momentum of daughter  " << fitted->momenum() 
    *                << " Fitted decay-legth of daughter " << fitted->decayLength() 
-   *                << endreq 
+   *                << endmsg 
    *     }
    *
    *  @endcode 
@@ -136,7 +136,7 @@ public:
    *     {  
    *        info () << " Fitted 4-momentum   " << fitted->momenum() 
    *                << " Fitted decay-length " << fitted->decayLength() 
-   *                << endreq 
+   *                << endmsg 
    *     }
    *
    *  @endcode 
diff --git a/Phys/DaVinciInterfaces/Kernel/IDecodeSimpleDecayString.h b/Phys/DaVinciInterfaces/Kernel/IDecodeSimpleDecayString.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IDirectionFit.h b/Phys/DaVinciInterfaces/Kernel/IDirectionFit.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IDistanceCalculator.h b/Phys/DaVinciInterfaces/Kernel/IDistanceCalculator.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IFilterParticles.h b/Phys/DaVinciInterfaces/Kernel/IFilterParticles.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IJetMaker.h b/Phys/DaVinciInterfaces/Kernel/IJetMaker.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/ILifetimeFitter.h b/Phys/DaVinciInterfaces/Kernel/ILifetimeFitter.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IMassFit.h b/Phys/DaVinciInterfaces/Kernel/IMassFit.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IP2VVAngleCalculator.h b/Phys/DaVinciInterfaces/Kernel/IP2VVAngleCalculator.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IP2VVPartAngleCalculator.h b/Phys/DaVinciInterfaces/Kernel/IP2VVPartAngleCalculator.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IPVReFitter.h b/Phys/DaVinciInterfaces/Kernel/IPVReFitter.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IParticle2State.h b/Phys/DaVinciInterfaces/Kernel/IParticle2State.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IParticleArrayFilter.h b/Phys/DaVinciInterfaces/Kernel/IParticleArrayFilter.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IParticleCombiner.h b/Phys/DaVinciInterfaces/Kernel/IParticleCombiner.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IParticleDescendants.h b/Phys/DaVinciInterfaces/Kernel/IParticleDescendants.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IParticleFilter.h b/Phys/DaVinciInterfaces/Kernel/IParticleFilter.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IParticleMaker.h b/Phys/DaVinciInterfaces/Kernel/IParticleMaker.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IParticleReFitter.h b/Phys/DaVinciInterfaces/Kernel/IParticleReFitter.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IParticleStuffer.h b/Phys/DaVinciInterfaces/Kernel/IParticleStuffer.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IParticleTisTos.h b/Phys/DaVinciInterfaces/Kernel/IParticleTisTos.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IParticleTransporter.h b/Phys/DaVinciInterfaces/Kernel/IParticleTransporter.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IParticleTupleTool.h b/Phys/DaVinciInterfaces/Kernel/IParticleTupleTool.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IParticleValue.h b/Phys/DaVinciInterfaces/Kernel/IParticleValue.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IPlotTool.h b/Phys/DaVinciInterfaces/Kernel/IPlotTool.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IPrintDecay.h b/Phys/DaVinciInterfaces/Kernel/IPrintDecay.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IProtoParticleFilter.h b/Phys/DaVinciInterfaces/Kernel/IProtoParticleFilter.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IRelatedPVFinder.h b/Phys/DaVinciInterfaces/Kernel/IRelatedPVFinder.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/ISecondaryVertexTool.h b/Phys/DaVinciInterfaces/Kernel/ISecondaryVertexTool.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/ISetInputParticles.h b/Phys/DaVinciInterfaces/Kernel/ISetInputParticles.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IStandardParticleProvider.h b/Phys/DaVinciInterfaces/Kernel/IStandardParticleProvider.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/ITagger.h b/Phys/DaVinciInterfaces/Kernel/ITagger.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/ITisTos.h b/Phys/DaVinciInterfaces/Kernel/ITisTos.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/ITriggerSelectionTisTos.h b/Phys/DaVinciInterfaces/Kernel/ITriggerSelectionTisTos.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/ITriggerTisTos.h b/Phys/DaVinciInterfaces/Kernel/ITriggerTisTos.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/Kernel/IVertexFit.h b/Phys/DaVinciInterfaces/Kernel/IVertexFit.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/dict/DaVinciInterfacesDict.h b/Phys/DaVinciInterfaces/dict/DaVinciInterfacesDict.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciInterfaces/dict/DaVinciInterfacesDict.xml b/Phys/DaVinciInterfaces/dict/DaVinciInterfacesDict.xml
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciKernel/Kernel/DaVinciStringUtils.h b/Phys/DaVinciKernel/Kernel/DaVinciStringUtils.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciKernel/Kernel/FilterParticlesBase.h b/Phys/DaVinciKernel/Kernel/FilterParticlesBase.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciKernel/Kernel/GetDecay.h b/Phys/DaVinciKernel/Kernel/GetDecay.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciKernel/Kernel/GetParticlesForDecay.h b/Phys/DaVinciKernel/Kernel/GetParticlesForDecay.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciKernel/Kernel/PP2MCLocation.h b/Phys/DaVinciKernel/Kernel/PP2MCLocation.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciKernel/Kernel/TransporterFunctions.h b/Phys/DaVinciKernel/Kernel/TransporterFunctions.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciKernel/dict/DaVinciKernelDict.h b/Phys/DaVinciKernel/dict/DaVinciKernelDict.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciKernel/dict/DaVinciKernelDict.xml b/Phys/DaVinciKernel/dict/DaVinciKernelDict.xml
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciKernel/src/Lib/FilterParticlesBase.cpp b/Phys/DaVinciKernel/src/Lib/FilterParticlesBase.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciKernel/src/Lib/GetDecay.cpp b/Phys/DaVinciKernel/src/Lib/GetDecay.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciKernel/src/component/DaVinciInit.cpp b/Phys/DaVinciKernel/src/component/DaVinciInit.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciKernel/src/component/DaVinciInit.h b/Phys/DaVinciKernel/src/component/DaVinciInit.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciKernel/src/component/DecodeSimpleDecayString.cpp b/Phys/DaVinciKernel/src/component/DecodeSimpleDecayString.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciKernel/src/component/DecodeSimpleDecayString.h b/Phys/DaVinciKernel/src/component/DecodeSimpleDecayString.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/Kernel/FilterMCParticlesBase.h b/Phys/DaVinciMCKernel/Kernel/FilterMCParticlesBase.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/Kernel/HepMC2MC.h b/Phys/DaVinciMCKernel/Kernel/HepMC2MC.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/Kernel/IBackgroundCategory.h b/Phys/DaVinciMCKernel/Kernel/IBackgroundCategory.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/Kernel/ICheatedLifetimeFitter.h b/Phys/DaVinciMCKernel/Kernel/ICheatedLifetimeFitter.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/Kernel/IDaVinciAssociatorsWrapper.h b/Phys/DaVinciMCKernel/Kernel/IDaVinciAssociatorsWrapper.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/Kernel/IFilterMCParticles.h b/Phys/DaVinciMCKernel/Kernel/IFilterMCParticles.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/Kernel/IHepMC2MC.h b/Phys/DaVinciMCKernel/Kernel/IHepMC2MC.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/Kernel/IMC2Collision.h b/Phys/DaVinciMCKernel/Kernel/IMC2Collision.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/Kernel/IMCParticleArrayFilter.h b/Phys/DaVinciMCKernel/Kernel/IMCParticleArrayFilter.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/Kernel/IMCParticleTupleTool.h b/Phys/DaVinciMCKernel/Kernel/IMCParticleTupleTool.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/Kernel/IP2VVMCPartAngleCalculator.h b/Phys/DaVinciMCKernel/Kernel/IP2VVMCPartAngleCalculator.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/Kernel/IPV2MC.h b/Phys/DaVinciMCKernel/Kernel/IPV2MC.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/Kernel/IPrintDecayTreeTool.h b/Phys/DaVinciMCKernel/Kernel/IPrintDecayTreeTool.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/Kernel/MC2Collision.h b/Phys/DaVinciMCKernel/Kernel/MC2Collision.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/Kernel/MCParticleMakerBase.h b/Phys/DaVinciMCKernel/Kernel/MCParticleMakerBase.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/Kernel/PV2MC.h b/Phys/DaVinciMCKernel/Kernel/PV2MC.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/Kernel/Particle2MC.h b/Phys/DaVinciMCKernel/Kernel/Particle2MC.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/Kernel/RC2HepMC.h b/Phys/DaVinciMCKernel/Kernel/RC2HepMC.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/Kernel/Track2MC.h b/Phys/DaVinciMCKernel/Kernel/Track2MC.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/dict/DaVinciMCKernelDict.h b/Phys/DaVinciMCKernel/dict/DaVinciMCKernelDict.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/dict/DaVinciMCKernelDict.xml b/Phys/DaVinciMCKernel/dict/DaVinciMCKernelDict.xml
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/src/Lib/FilterMCParticlesBase.cpp b/Phys/DaVinciMCKernel/src/Lib/FilterMCParticlesBase.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/src/Lib/IHepMC2MC.cpp b/Phys/DaVinciMCKernel/src/Lib/IHepMC2MC.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/src/Lib/IMC2Collision.cpp b/Phys/DaVinciMCKernel/src/Lib/IMC2Collision.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/src/Lib/IPV2MC.cpp b/Phys/DaVinciMCKernel/src/Lib/IPV2MC.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/src/Lib/MC2Collision.cpp b/Phys/DaVinciMCKernel/src/Lib/MC2Collision.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciMCKernel/src/Lib/MCParticleMakerBase.cpp b/Phys/DaVinciMCKernel/src/Lib/MCParticleMakerBase.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciNeutralTools/src/BremAdder.cpp b/Phys/DaVinciNeutralTools/src/BremAdder.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciNeutralTools/src/BremAdder.h b/Phys/DaVinciNeutralTools/src/BremAdder.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciNeutralTools/src/ConjugateNeutralPID.cpp b/Phys/DaVinciNeutralTools/src/ConjugateNeutralPID.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciNeutralTools/src/ConjugateNeutralPID.h b/Phys/DaVinciNeutralTools/src/ConjugateNeutralPID.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciNeutralTools/src/NeutralCCChangePIDTool.cpp b/Phys/DaVinciNeutralTools/src/NeutralCCChangePIDTool.cpp
old mode 100755
new mode 100644
index e4ef6e6dd..6c7f2efa8
--- a/Phys/DaVinciNeutralTools/src/NeutralCCChangePIDTool.cpp
+++ b/Phys/DaVinciNeutralTools/src/NeutralCCChangePIDTool.cpp
@@ -75,10 +75,10 @@ LHCb::Particle NeutralCCChangePIDTool::changePID( const LHCb::Particle &oldpart
       /// Verbosity
       verbose() << "Returning " << newpart.particleID().pid()
                 << " with momentum " << newpart.momentum() << " m="
-                << newpart.measuredMass() << endreq;
+                << newpart.measuredMass() << endmsg;
       verbose() << " copied from " << oldpart.particleID().pid()
                 << " with momentum " << oldpart.momentum() << " m="
-                << oldpart.measuredMass() << endreq;
+                << oldpart.measuredMass() << endmsg;
 
       return newpart;     /// Return by value
     }
diff --git a/Phys/DaVinciNeutralTools/src/NeutralCCChangePIDTool.h b/Phys/DaVinciNeutralTools/src/NeutralCCChangePIDTool.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciOverlapsAndClones/src/CheckOverlap.cpp b/Phys/DaVinciOverlapsAndClones/src/CheckOverlap.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciOverlapsAndClones/src/CheckOverlap.h b/Phys/DaVinciOverlapsAndClones/src/CheckOverlap.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciOverlapsAndClones/src/CheckVeloOverlap.cpp b/Phys/DaVinciOverlapsAndClones/src/CheckVeloOverlap.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciOverlapsAndClones/src/CheckVeloOverlap.h b/Phys/DaVinciOverlapsAndClones/src/CheckVeloOverlap.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciOverlapsAndClones/src/FindCloneTool.cpp b/Phys/DaVinciOverlapsAndClones/src/FindCloneTool.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciOverlapsAndClones/src/FindCloneTool.h b/Phys/DaVinciOverlapsAndClones/src/FindCloneTool.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciOverlapsAndClones/src/PrintDuplicates.cpp b/Phys/DaVinciOverlapsAndClones/src/PrintDuplicates.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciOverlapsAndClones/src/PrintDuplicates.h b/Phys/DaVinciOverlapsAndClones/src/PrintDuplicates.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciOverlapsAndClones/src/RemoveClones.cpp b/Phys/DaVinciOverlapsAndClones/src/RemoveClones.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciOverlapsAndClones/src/RemoveClones.h b/Phys/DaVinciOverlapsAndClones/src/RemoveClones.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciOverlapsAndClones/src/RemoveDuplicates.cpp b/Phys/DaVinciOverlapsAndClones/src/RemoveDuplicates.cpp
old mode 100755
new mode 100644
index 00c00ed1c..135ccaee6
--- a/Phys/DaVinciOverlapsAndClones/src/RemoveDuplicates.cpp
+++ b/Phys/DaVinciOverlapsAndClones/src/RemoveDuplicates.cpp
@@ -46,7 +46,7 @@ StatusCode RemoveDuplicates::execute() {
     return StatusCode::SUCCESS;
   }
   if (msgLevel(MSG::VERBOSE)) verbose() << "I have " << mothers.size()
-                                        << " particles to handle" << endreq;
+                                        << " particles to handle" << endmsg;
 
   if(!sc) return sc;
   unsigned int NpartIn=0;
diff --git a/Phys/DaVinciOverlapsAndClones/src/RemoveDuplicates.h b/Phys/DaVinciOverlapsAndClones/src/RemoveDuplicates.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciPVTools/src/CheckPV.cpp b/Phys/DaVinciPVTools/src/CheckPV.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciPVTools/src/CheckPV.h b/Phys/DaVinciPVTools/src/CheckPV.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciPVTools/src/DistanceCalculatorNames.cpp b/Phys/DaVinciPVTools/src/DistanceCalculatorNames.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciPVTools/src/DistanceCalculatorNames.h b/Phys/DaVinciPVTools/src/DistanceCalculatorNames.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciPVTools/src/GenericParticle2PVRelator.h b/Phys/DaVinciPVTools/src/GenericParticle2PVRelator.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciPVTools/src/OnlineP2PVWithIP.cpp b/Phys/DaVinciPVTools/src/OnlineP2PVWithIP.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciPVTools/src/OnlineP2PVWithIPChi2.cpp b/Phys/DaVinciPVTools/src/OnlineP2PVWithIPChi2.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciPVTools/src/P2PVLogic.h b/Phys/DaVinciPVTools/src/P2PVLogic.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciPVTools/src/P2PVWithIP.cpp b/Phys/DaVinciPVTools/src/P2PVWithIP.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciPVTools/src/P2PVWithIPChi2.cpp b/Phys/DaVinciPVTools/src/P2PVWithIPChi2.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciTools/src/AlgorithmCorrelationsAlg.cpp b/Phys/DaVinciTools/src/AlgorithmCorrelationsAlg.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciTools/src/AlgorithmCorrelationsAlg.h b/Phys/DaVinciTools/src/AlgorithmCorrelationsAlg.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciTools/src/CheckSelResult.cpp b/Phys/DaVinciTools/src/CheckSelResult.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciTools/src/CheckSelResult.h b/Phys/DaVinciTools/src/CheckSelResult.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciTools/src/CheckSelResultsTool.cpp b/Phys/DaVinciTools/src/CheckSelResultsTool.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciTools/src/CheckSelResultsTool.h b/Phys/DaVinciTools/src/CheckSelResultsTool.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciTools/src/CountParticles.cpp b/Phys/DaVinciTools/src/CountParticles.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciTools/src/ParticleDescendants.cpp b/Phys/DaVinciTools/src/ParticleDescendants.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciTools/src/ParticleDescendants.h b/Phys/DaVinciTools/src/ParticleDescendants.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciTools/src/PrintDecayTree.cpp b/Phys/DaVinciTools/src/PrintDecayTree.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciTransporter/src/ParticleTransporter.cpp b/Phys/DaVinciTransporter/src/ParticleTransporter.cpp
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciTransporter/src/ParticleTransporter.h b/Phys/DaVinciTransporter/src/ParticleTransporter.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciTypes/Kernel/Particle2Vertex.h b/Phys/DaVinciTypes/Kernel/Particle2Vertex.h
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciTypes/dict/DaVinciTypes.xml b/Phys/DaVinciTypes/dict/DaVinciTypes.xml
old mode 100755
new mode 100644
diff --git a/Phys/DaVinciTypes/dict/DaVinciTypesDict.h b/Phys/DaVinciTypes/dict/DaVinciTypesDict.h
old mode 100755
new mode 100644
diff --git a/Phys/ExtraInfoTools/src/AddExtraInfo.cpp b/Phys/ExtraInfoTools/src/AddExtraInfo.cpp
old mode 100755
new mode 100644
diff --git a/Phys/ExtraInfoTools/src/AddExtraInfo.h b/Phys/ExtraInfoTools/src/AddExtraInfo.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/FlavourTagging/ITaggingUtils.h b/Phys/FlavourTagging/FlavourTagging/ITaggingUtils.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/BTagging.cpp b/Phys/FlavourTagging/src/BTagging.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/BTagging.h b/Phys/FlavourTagging/src/BTagging.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/BTaggingTool.cpp b/Phys/FlavourTagging/src/BTaggingTool.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/BTaggingTool.h b/Phys/FlavourTagging/src/BTaggingTool.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/CombineTaggersOSTDR.cpp b/Phys/FlavourTagging/src/CombineTaggersOSTDR.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/CombineTaggersOSTDR.h b/Phys/FlavourTagging/src/CombineTaggersOSTDR.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/CombineTaggersPID.cpp b/Phys/FlavourTagging/src/CombineTaggersPID.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/CombineTaggersPID.h b/Phys/FlavourTagging/src/CombineTaggersPID.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/CombineTaggersProbability.cpp b/Phys/FlavourTagging/src/CombineTaggersProbability.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/CombineTaggersProbability.h b/Phys/FlavourTagging/src/CombineTaggersProbability.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/CombineTaggersTDR.cpp b/Phys/FlavourTagging/src/CombineTaggersTDR.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/CombineTaggersTDR.h b/Phys/FlavourTagging/src/CombineTaggersTDR.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/DoubleTagging.cpp b/Phys/FlavourTagging/src/DoubleTagging.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/DoubleTagging.h b/Phys/FlavourTagging/src/DoubleTagging.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/ElectronOSWrapper.cpp b/Phys/FlavourTagging/src/ElectronOSWrapper.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/ElectronOSWrapper.h b/Phys/FlavourTagging/src/ElectronOSWrapper.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/ICombineTaggersTool.h b/Phys/FlavourTagging/src/ICombineTaggersTool.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/INNetTool.h b/Phys/FlavourTagging/src/INNetTool.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/KaonOSWrapper.cpp b/Phys/FlavourTagging/src/KaonOSWrapper.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/KaonOSWrapper.h b/Phys/FlavourTagging/src/KaonOSWrapper.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/MCElectronOSWrapper.cpp b/Phys/FlavourTagging/src/MCElectronOSWrapper.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/MCElectronOSWrapper.h b/Phys/FlavourTagging/src/MCElectronOSWrapper.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/MCKaonOSWrapper.cpp b/Phys/FlavourTagging/src/MCKaonOSWrapper.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/MCKaonOSWrapper.h b/Phys/FlavourTagging/src/MCKaonOSWrapper.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/MCKaonSSWrapper.cpp b/Phys/FlavourTagging/src/MCKaonSSWrapper.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/MCKaonSSWrapper.h b/Phys/FlavourTagging/src/MCKaonSSWrapper.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/MCMuonOSWrapper.cpp b/Phys/FlavourTagging/src/MCMuonOSWrapper.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/MCMuonOSWrapper.h b/Phys/FlavourTagging/src/MCMuonOSWrapper.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/MCPionSSWrapper.cpp b/Phys/FlavourTagging/src/MCPionSSWrapper.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/MCPionSSWrapper.h b/Phys/FlavourTagging/src/MCPionSSWrapper.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/MCVertexOSWrapper.cpp b/Phys/FlavourTagging/src/MCVertexOSWrapper.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/MCVertexOSWrapper.h b/Phys/FlavourTagging/src/MCVertexOSWrapper.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/MuonOSWrapper.cpp b/Phys/FlavourTagging/src/MuonOSWrapper.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/MuonOSWrapper.h b/Phys/FlavourTagging/src/MuonOSWrapper.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/NNetTool_MLP.cpp b/Phys/FlavourTagging/src/NNetTool_MLP.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/NNetTool_MLP.h b/Phys/FlavourTagging/src/NNetTool_MLP.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/NeuralNet/NNele.h b/Phys/FlavourTagging/src/NeuralNet/NNele.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/NeuralNet/NNkaon.h b/Phys/FlavourTagging/src/NeuralNet/NNkaon.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/NeuralNet/NNkaonS.h b/Phys/FlavourTagging/src/NeuralNet/NNkaonS.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/NeuralNet/NNmuon.h b/Phys/FlavourTagging/src/NeuralNet/NNmuon.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/NeuralNet/NNpionS.h b/Phys/FlavourTagging/src/NeuralNet/NNpionS.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/NeuralNet/NNvtx.h b/Phys/FlavourTagging/src/NeuralNet/NNvtx.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/NeuralNet/extrann/LP2011/NNele.h b/Phys/FlavourTagging/src/NeuralNet/extrann/LP2011/NNele.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/NeuralNet/extrann/LP2011/NNkaon.h b/Phys/FlavourTagging/src/NeuralNet/extrann/LP2011/NNkaon.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/NeuralNet/extrann/LP2011/NNkaonS.h b/Phys/FlavourTagging/src/NeuralNet/extrann/LP2011/NNkaonS.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/NeuralNet/extrann/LP2011/NNmuon.h b/Phys/FlavourTagging/src/NeuralNet/extrann/LP2011/NNmuon.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/NeuralNet/extrann/LP2011/NNpionS.h b/Phys/FlavourTagging/src/NeuralNet/extrann/LP2011/NNpionS.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/NeuralNet/extrann/LP2011/NNvtx.h b/Phys/FlavourTagging/src/NeuralNet/extrann/LP2011/NNvtx.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/NeuralNet/weights/NNe_Fisher.weights.txt b/Phys/FlavourTagging/src/NeuralNet/weights/NNe_Fisher.weights.txt
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/NeuralNet/weights/NNkS_Fisher.weights.txt b/Phys/FlavourTagging/src/NeuralNet/weights/NNkS_Fisher.weights.txt
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/NeuralNet/weights/NNk_LikelihoodD.weights.txt b/Phys/FlavourTagging/src/NeuralNet/weights/NNk_LikelihoodD.weights.txt
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/NeuralNet/weights/NNmu_Fisher.weights.txt b/Phys/FlavourTagging/src/NeuralNet/weights/NNmu_Fisher.weights.txt
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/NeuralNet/weights/NNpS_LikelihoodD.weights.txt b/Phys/FlavourTagging/src/NeuralNet/weights/NNpS_LikelihoodD.weights.txt
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/SVertexNNTool.cpp b/Phys/FlavourTagging/src/SVertexNNTool.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/SVertexNNTool.h b/Phys/FlavourTagging/src/SVertexNNTool.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/SVertexOneSeedTool.cpp b/Phys/FlavourTagging/src/SVertexOneSeedTool.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/SVertexOneSeedTool.h b/Phys/FlavourTagging/src/SVertexOneSeedTool.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/SVertexTool.cpp b/Phys/FlavourTagging/src/SVertexTool.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/SVertexTool.h b/Phys/FlavourTagging/src/SVertexTool.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/TaggerCharmTool.cpp b/Phys/FlavourTagging/src/TaggerCharmTool.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/TaggerCharmTool.h b/Phys/FlavourTagging/src/TaggerCharmTool.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/TaggerElectronTool.cpp b/Phys/FlavourTagging/src/TaggerElectronTool.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/TaggerElectronTool.h b/Phys/FlavourTagging/src/TaggerElectronTool.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/TaggerJetSameTool.cpp b/Phys/FlavourTagging/src/TaggerJetSameTool.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/TaggerJetSameTool.h b/Phys/FlavourTagging/src/TaggerJetSameTool.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/TaggerKaonOppositeTool.cpp b/Phys/FlavourTagging/src/TaggerKaonOppositeTool.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/TaggerKaonOppositeTool.h b/Phys/FlavourTagging/src/TaggerKaonOppositeTool.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/TaggerKaonSameTool.cpp b/Phys/FlavourTagging/src/TaggerKaonSameTool.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/TaggerKaonSameTool.h b/Phys/FlavourTagging/src/TaggerKaonSameTool.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/TaggerMuonTool.cpp b/Phys/FlavourTagging/src/TaggerMuonTool.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/TaggerMuonTool.h b/Phys/FlavourTagging/src/TaggerMuonTool.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/TaggerNEWKaonOppositeTool.cpp b/Phys/FlavourTagging/src/TaggerNEWKaonOppositeTool.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/TaggerNEWKaonOppositeTool.h b/Phys/FlavourTagging/src/TaggerNEWKaonOppositeTool.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/TaggerNEWKaonSameTool.cpp b/Phys/FlavourTagging/src/TaggerNEWKaonSameTool.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/TaggerNEWKaonSameTool.h b/Phys/FlavourTagging/src/TaggerNEWKaonSameTool.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/TaggerPionBDTSameTool.cpp b/Phys/FlavourTagging/src/TaggerPionBDTSameTool.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/TaggerPionBDTSameTool.h b/Phys/FlavourTagging/src/TaggerPionBDTSameTool.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/TaggerPionSameTool.cpp b/Phys/FlavourTagging/src/TaggerPionSameTool.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/TaggerPionSameTool.h b/Phys/FlavourTagging/src/TaggerPionSameTool.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/TaggerProtonSameTool.cpp b/Phys/FlavourTagging/src/TaggerProtonSameTool.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/TaggerProtonSameTool.h b/Phys/FlavourTagging/src/TaggerProtonSameTool.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/TaggerVertexChargeTool.cpp b/Phys/FlavourTagging/src/TaggerVertexChargeTool.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/TaggerVertexChargeTool.h b/Phys/FlavourTagging/src/TaggerVertexChargeTool.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/TaggingUtils.cpp b/Phys/FlavourTagging/src/TaggingUtils.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/TaggingUtils.h b/Phys/FlavourTagging/src/TaggingUtils.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/VertexOSWrapper.cpp b/Phys/FlavourTagging/src/VertexOSWrapper.cpp
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/src/VertexOSWrapper.h b/Phys/FlavourTagging/src/VertexOSWrapper.h
old mode 100755
new mode 100644
diff --git a/Phys/FlavourTagging/summary/summaryof.cpp b/Phys/FlavourTagging/summary/summaryof.cpp
old mode 100755
new mode 100644
diff --git a/Phys/HighPtJets/src/TrackClusterFinder.cpp b/Phys/HighPtJets/src/TrackClusterFinder.cpp
old mode 100755
new mode 100644
diff --git a/Phys/HighPtJets/src/TrackClusterFinder.h b/Phys/HighPtJets/src/TrackClusterFinder.h
old mode 100755
new mode 100644
diff --git a/Phys/JetTagging/dict/JetTaggingInterface.h b/Phys/JetTagging/dict/JetTaggingInterface.h
old mode 100755
new mode 100644
diff --git a/Phys/JetTagging/dict/JetTaggingInterface.xml b/Phys/JetTagging/dict/JetTaggingInterface.xml
old mode 100755
new mode 100644
diff --git a/Phys/JetTagging/src/LoKiSeedFinderNTrks.cpp b/Phys/JetTagging/src/LoKiSeedFinderNTrks.cpp
old mode 100755
new mode 100644
diff --git a/Phys/JetTagging/src/LoKiSeedFinderNTrks.h b/Phys/JetTagging/src/LoKiSeedFinderNTrks.h
old mode 100755
new mode 100644
diff --git a/Phys/KalmanFilter/KalmanFilter/VertexFit.h b/Phys/KalmanFilter/KalmanFilter/VertexFit.h
old mode 100755
new mode 100644
diff --git a/Phys/KalmanFilter/src/VertexFit.cpp b/Phys/KalmanFilter/src/VertexFit.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKi/LoKi/LoKi.h b/Phys/LoKi/LoKi/LoKi.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiAlgo/LoKi/Algo.h b/Phys/LoKiAlgo/LoKi/Algo.h
old mode 100755
new mode 100644
index e4a52ebb4..cdf89b953
--- a/Phys/LoKiAlgo/LoKi/Algo.h
+++ b/Phys/LoKiAlgo/LoKi/Algo.h
@@ -1114,7 +1114,7 @@ namespace LoKi
       {
         m_cutValues[ name ] = value ;
         debug() << " Add the cut/value pair: "
-                << "'" << name << "'/" << value << endreq ;
+                << "'" << name << "'/" << value << endmsg ;
         return value ;
       }
       return ifind->second ;
diff --git a/Phys/LoKiAlgo/LoKi/AlgoDecorator.h b/Phys/LoKiAlgo/LoKi/AlgoDecorator.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiAlgo/LoKi/AlgoTypes.h b/Phys/LoKiAlgo/LoKi/AlgoTypes.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiAlgo/LoKi/ExtCalls.h b/Phys/LoKiAlgo/LoKi/ExtCalls.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiAlgo/LoKi/GetLoKiAlgo.h b/Phys/LoKiAlgo/LoKi/GetLoKiAlgo.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiAlgo/LoKi/LoKiAlgo.h b/Phys/LoKiAlgo/LoKi/LoKiAlgo.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiAlgo/LoKi/Loop.h b/Phys/LoKiAlgo/LoKi/Loop.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiAlgo/LoKi/LoopChild.h b/Phys/LoKiAlgo/LoKi/LoopChild.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiAlgo/LoKi/LoopDecorator.h b/Phys/LoKiAlgo/LoKi/LoopDecorator.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiAlgo/LoKi/LoopObj.h b/Phys/LoKiAlgo/LoKi/LoopObj.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiAlgo/LoKi/LoopObj.icpp b/Phys/LoKiAlgo/LoKi/LoopObj.icpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiAlgo/LoKi/PrintLoopDecay.h b/Phys/LoKiAlgo/LoKi/PrintLoopDecay.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiAlgo/LoKi/TupleDicts.h b/Phys/LoKiAlgo/LoKi/TupleDicts.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiAlgo/dict/LoKiAlgo.xml b/Phys/LoKiAlgo/dict/LoKiAlgo.xml
old mode 100755
new mode 100644
diff --git a/Phys/LoKiAlgo/dict/LoKiAlgoDict.h b/Phys/LoKiAlgo/dict/LoKiAlgoDict.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiAlgo/src/Algo.cpp b/Phys/LoKiAlgo/src/Algo.cpp
old mode 100755
new mode 100644
index cc57ba1c6..336c1ad94
--- a/Phys/LoKiAlgo/src/Algo.cpp
+++ b/Phys/LoKiAlgo/src/Algo.cpp
@@ -194,7 +194,7 @@ LoKi::Algo::vselect
     {
       Warning("LHCb::RecVertex::technique reset to Primary") ;
       debug() << " Number of modified vertices " 
-              << changed << "/" << prims.size() << endreq ;
+              << changed << "/" << prims.size() << endmsg ;
     }
     //
     vselect ( name , prims.begin() , prims.end() , cut ) ;
@@ -766,7 +766,7 @@ StatusCode LoKi::Algo::finalize ()
   if ( !m_cutValues.empty() && msgLevel ( MSG::DEBUG ) ) 
   {
     debug() << " The specific cuts used: " 
-            << Gaudi::Utils::toString ( m_cutValues ) << endreq ;
+            << Gaudi::Utils::toString ( m_cutValues ) << endmsg ;
   }
   //
   m_decay.release() ;
diff --git a/Phys/LoKiAlgo/src/GetLoKiAlgo.cpp b/Phys/LoKiAlgo/src/GetLoKiAlgo.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiAlgo/src/LoKiAlgo.cpp b/Phys/LoKiAlgo/src/LoKiAlgo.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiAlgo/src/Loop.cpp b/Phys/LoKiAlgo/src/Loop.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiAlgo/src/LoopChild.cpp b/Phys/LoKiAlgo/src/LoopChild.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiAlgo/src/LoopDecorator.cpp b/Phys/LoKiAlgo/src/LoopDecorator.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiAlgo/src/LoopObj.cpp b/Phys/LoKiAlgo/src/LoopObj.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiAlgo/src/PrintLoopDecay.cpp b/Phys/LoKiAlgo/src/PrintLoopDecay.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiAlgo/src/TupleDicts.cpp b/Phys/LoKiAlgo/src/TupleDicts.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/LoKi/AChild.h b/Phys/LoKiArrayFunctors/LoKi/AChild.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/LoKi/AKinematics.h b/Phys/LoKiArrayFunctors/LoKi/AKinematics.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/LoKi/AParticleCuts.h b/Phys/LoKiArrayFunctors/LoKi/AParticleCuts.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/LoKi/AParticles.h b/Phys/LoKiArrayFunctors/LoKi/AParticles.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/LoKi/HybridEngine.h b/Phys/LoKiArrayFunctors/LoKi/HybridEngine.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/LoKi/HybridEngineActor.h b/Phys/LoKiArrayFunctors/LoKi/HybridEngineActor.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/LoKi/HybridLock.h b/Phys/LoKiArrayFunctors/LoKi/HybridLock.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/LoKi/IHybridFactory.h b/Phys/LoKiArrayFunctors/LoKi/IHybridFactory.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/LoKi/IHybridTool.h b/Phys/LoKiArrayFunctors/LoKi/IHybridTool.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/LoKi/LoKiArrayFunctors.h b/Phys/LoKiArrayFunctors/LoKi/LoKiArrayFunctors.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/LoKi/LoKiArrayFunctors_dct.h b/Phys/LoKiArrayFunctors/LoKi/LoKiArrayFunctors_dct.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/dict/LoKiArrayFunctors.xml b/Phys/LoKiArrayFunctors/dict/LoKiArrayFunctors.xml
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/dict/LoKiArrayFunctorsDict.h b/Phys/LoKiArrayFunctors/dict/LoKiArrayFunctorsDict.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/src/AChild.cpp b/Phys/LoKiArrayFunctors/src/AChild.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/src/AParticles.cpp b/Phys/LoKiArrayFunctors/src/AParticles.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/src/Components/ArrayTupleTool.cpp b/Phys/LoKiArrayFunctors/src/Components/ArrayTupleTool.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/src/Components/HybridFilterCriterion.cpp b/Phys/LoKiArrayFunctors/src/Components/HybridFilterCriterion.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/src/Components/HybridFilterParticles.cpp b/Phys/LoKiArrayFunctors/src/Components/HybridFilterParticles.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/src/Components/HybridParticleArrayFilter.cpp b/Phys/LoKiArrayFunctors/src/Components/HybridParticleArrayFilter.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/src/Components/HybridTool.cpp b/Phys/LoKiArrayFunctors/src/Components/HybridTool.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/src/Components/PlotTool.cpp b/Phys/LoKiArrayFunctors/src/Components/PlotTool.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/src/Components/PrintTool.cpp b/Phys/LoKiArrayFunctors/src/Components/PrintTool.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/src/Components/TupleTool.cpp b/Phys/LoKiArrayFunctors/src/Components/TupleTool.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/src/HybridEngine.cpp b/Phys/LoKiArrayFunctors/src/HybridEngine.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/src/HybridEngineActor.cpp b/Phys/LoKiArrayFunctors/src/HybridEngineActor.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/src/HybridLock.cpp b/Phys/LoKiArrayFunctors/src/HybridLock.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/src/IHybridFactory.cpp b/Phys/LoKiArrayFunctors/src/IHybridFactory.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/src/IHybridTool.cpp b/Phys/LoKiArrayFunctors/src/IHybridTool.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiArrayFunctors/src/LoKiArrayFunctors.cpp b/Phys/LoKiArrayFunctors/src/LoKiArrayFunctors.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiFitters/src/DecayTreeFit.cpp b/Phys/LoKiFitters/src/DecayTreeFit.cpp
index 725a6f4d8..4caebee52 100644
--- a/Phys/LoKiFitters/src/DecayTreeFit.cpp
+++ b/Phys/LoKiFitters/src/DecayTreeFit.cpp
@@ -163,7 +163,7 @@ namespace LoKi
      *     {  
      *        info () << " Fitted 4-momentum of daughter  " << fitted->momenum() 
      *                << " Fitted decay-legth of daughter " << fitted->decayLength() 
-     *                << endreq 
+     *                << endmsg 
      *     }
      *
      *  @endcode 
@@ -189,7 +189,7 @@ namespace LoKi
      *     {  
      *        info () << " Fitted 4-momentum   " << fitted->momenum() 
      *                << " Fitted decay-length " << fitted->decayLength() 
-     *                << endreq 
+     *                << endmsg 
      *     }
      *
      *  @endcode 
@@ -444,7 +444,7 @@ namespace LoKi
       log << "New Track extrapolator to be used '" << m_extrapolatorName <<  "'" ;
       const IAlgTool* e = extrapolator() ;
       if ( 0 != e ) { log  << " : " << e->type() << "/" << e->name() ;} 
-      log << endreq ;
+      log << endmsg ;
       //
     }
     // ========================================================================
@@ -529,7 +529,7 @@ StatusCode LoKi::DecayTreeFit::initialize ()          // initialize the tool
     log << "Track extrapolator to be used '" << m_extrapolatorName << "'" ;
     const IAlgTool* e = extrapolator() ;
     if ( 0 != e ) { log  << " : " << e->type() << "/" << e->name() ;} 
-    log << endreq ;  
+    log << endmsg ;  
   } // 
   //
   sc = decodeConstraints1 () ;
@@ -855,7 +855,7 @@ StatusCode LoKi::DecayTreeFit::decodeConstraints1 ()    // decode constraints
   //
   if ( m_constraints.empty() ) 
   {
-    debug() << " No Mass-Constraints will be applied " << endreq ;
+    debug() << " No Mass-Constraints will be applied " << endmsg ;
     return StatusCode::SUCCESS ;
   }
   ///
@@ -882,7 +882,7 @@ StatusCode LoKi::DecayTreeFit::decodeConstraints1 ()    // decode constraints
   }
   //
   info() << " Mass Constraints will be applied for : "
-         << Gaudi::Utils::toString ( parts ) << endreq ;
+         << Gaudi::Utils::toString ( parts ) << endmsg ;
   //
   release ( ppsvc ) ;
   //
@@ -897,7 +897,7 @@ StatusCode LoKi::DecayTreeFit::decodeConstraints2 ()    // decode constraints
   //
   if ( m_masses.empty() ) 
   {
-    debug() << " No Mass-Constraints will be applied " << endreq ;
+    debug() << " No Mass-Constraints will be applied " << endmsg ;
     return StatusCode::SUCCESS ;
   }
   ///
@@ -922,7 +922,7 @@ StatusCode LoKi::DecayTreeFit::decodeConstraints2 ()    // decode constraints
   }
   //
   info() << " Mass Constraints will be applied for : " 
-         << Gaudi::Utils::toString ( parts ) << endreq ;
+         << Gaudi::Utils::toString ( parts ) << endmsg ;
   //
   release ( ppsvc ) ;
   //
diff --git a/Phys/LoKiFitters/src/DirectionFitBase.cpp b/Phys/LoKiFitters/src/DirectionFitBase.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiFitters/src/DirectionFitBase.h b/Phys/LoKiFitters/src/DirectionFitBase.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiFitters/src/DirectionFitter.cpp b/Phys/LoKiFitters/src/DirectionFitter.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiFitters/src/DistanceCalculator.cpp b/Phys/LoKiFitters/src/DistanceCalculator.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiFitters/src/DistanceCalculatorBase.cpp b/Phys/LoKiFitters/src/DistanceCalculatorBase.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiFitters/src/DistanceCalculatorBase.h b/Phys/LoKiFitters/src/DistanceCalculatorBase.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiFitters/src/FakeReFitter.cpp b/Phys/LoKiFitters/src/FakeReFitter.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiFitters/src/FitterUtils.cpp b/Phys/LoKiFitters/src/FitterUtils.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiFitters/src/FitterUtils.h b/Phys/LoKiFitters/src/FitterUtils.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiFitters/src/LifetimeFitter.cpp b/Phys/LoKiFitters/src/LifetimeFitter.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiFitters/src/MassFitter.cpp b/Phys/LoKiFitters/src/MassFitter.cpp
old mode 100755
new mode 100644
index 1f346382d..f07ce5c19
--- a/Phys/LoKiFitters/src/MassFitter.cpp
+++ b/Phys/LoKiFitters/src/MassFitter.cpp
@@ -590,7 +590,7 @@ StatusCode LoKi::MassFitter::fit
     log << "\tThe 4-momentum  : "<< particle->momentum()        << std::endl ;
     log << "\tThe Matrix V_p  : "<< particle->momCovMatrix()    << std::endl ;
     log << "\tThe Matrix V_px : "<< particle->posMomCovMatrix() << std::endl ;
-    log << "\tThe Matrix V_x  : "<< particle->posCovMatrix()    << endreq    ;
+    log << "\tThe Matrix V_x  : "<< particle->posCovMatrix()    << endmsg    ;
   }
   //
   return sc ; 
diff --git a/Phys/LoKiFitters/src/TrgDistanceCalculator.cpp b/Phys/LoKiFitters/src/TrgDistanceCalculator.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiFitters/src/VertexFitter.cpp b/Phys/LoKiFitters/src/VertexFitter.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiFitters/src/VertexFitter.h b/Phys/LoKiFitters/src/VertexFitter.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiJets/src/LoKiFastJetMaker.cpp b/Phys/LoKiJets/src/LoKiFastJetMaker.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiJets/src/LoKiFastJetMaker.h b/Phys/LoKiJets/src/LoKiFastJetMaker.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiJets/src/LoKiFastJetWithAreaMaker.cpp b/Phys/LoKiJets/src/LoKiFastJetWithAreaMaker.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiJets/src/LoKiJetMakerAlg.cpp b/Phys/LoKiJets/src/LoKiJetMakerAlg.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiJets/src/LoKiJetMakerWR2VtxAlg.cpp b/Phys/LoKiJets/src/LoKiJetMakerWR2VtxAlg.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiJets/src/LoKiJetParticleMaker.cpp b/Phys/LoKiJets/src/LoKiJetParticleMaker.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiJets/src/LoKiJets2JetsAlg.cpp b/Phys/LoKiJets/src/LoKiJets2JetsAlg.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiJets/src/LoKiSeedConeJetMaker.cpp b/Phys/LoKiJets/src/LoKiSeedConeJetMaker.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiJets/src/LoKiSeedConeJetMaker.h b/Phys/LoKiJets/src/LoKiSeedConeJetMaker.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiJets/src/LoKiSeedFinder.cpp b/Phys/LoKiJets/src/LoKiSeedFinder.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiJets/src/LoKiSeedFinder.h b/Phys/LoKiJets/src/LoKiSeedFinder.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiJets/src/LoKiVVSeedFinder.cpp b/Phys/LoKiJets/src/LoKiVVSeedFinder.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiJets/src/LoKiVVSeedFinder.h b/Phys/LoKiJets/src/LoKiVVSeedFinder.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/ATypes.h b/Phys/LoKiPhys/LoKi/ATypes.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/AuxDesktopBase.h b/Phys/LoKiPhys/LoKi/AuxDesktopBase.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Child.h b/Phys/LoKiPhys/LoKi/Child.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/CompareParticles.h b/Phys/LoKiPhys/LoKi/CompareParticles.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Decays.h b/Phys/LoKiPhys/LoKi/Decays.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/GetPhysDesktop.h b/Phys/LoKiPhys/LoKi/GetPhysDesktop.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/ImpParBase.h b/Phys/LoKiPhys/LoKi/ImpParBase.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/ImpactParamTool.h b/Phys/LoKiPhys/LoKi/ImpactParamTool.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/LoKiPhys.h b/Phys/LoKiPhys/LoKi/LoKiPhys.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/LoKiPhys_dct.h b/Phys/LoKiPhys/LoKi/LoKiPhys_dct.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/PIDOperators.h b/Phys/LoKiPhys/LoKi/PIDOperators.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/ParticleContextCuts.h b/Phys/LoKiPhys/LoKi/ParticleContextCuts.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/ParticleCuts.h b/Phys/LoKiPhys/LoKi/ParticleCuts.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Particles.h b/Phys/LoKiPhys/LoKi/Particles.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Particles0.h b/Phys/LoKiPhys/LoKi/Particles0.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Particles1.h b/Phys/LoKiPhys/LoKi/Particles1.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Particles10.h b/Phys/LoKiPhys/LoKi/Particles10.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Particles11.h b/Phys/LoKiPhys/LoKi/Particles11.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Particles12.h b/Phys/LoKiPhys/LoKi/Particles12.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Particles13.h b/Phys/LoKiPhys/LoKi/Particles13.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Particles14.h b/Phys/LoKiPhys/LoKi/Particles14.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Particles15.h b/Phys/LoKiPhys/LoKi/Particles15.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Particles16.h b/Phys/LoKiPhys/LoKi/Particles16.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Particles17.h b/Phys/LoKiPhys/LoKi/Particles17.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Particles18.h b/Phys/LoKiPhys/LoKi/Particles18.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Particles19.h b/Phys/LoKiPhys/LoKi/Particles19.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Particles2.h b/Phys/LoKiPhys/LoKi/Particles2.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Particles20.h b/Phys/LoKiPhys/LoKi/Particles20.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Particles21.h b/Phys/LoKiPhys/LoKi/Particles21.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Particles22.h b/Phys/LoKiPhys/LoKi/Particles22.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Particles23.h b/Phys/LoKiPhys/LoKi/Particles23.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Particles3.h b/Phys/LoKiPhys/LoKi/Particles3.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Particles4.h b/Phys/LoKiPhys/LoKi/Particles4.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Particles44.h b/Phys/LoKiPhys/LoKi/Particles44.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Particles5.h b/Phys/LoKiPhys/LoKi/Particles5.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Particles6.h b/Phys/LoKiPhys/LoKi/Particles6.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Particles7.h b/Phys/LoKiPhys/LoKi/Particles7.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Particles8.h b/Phys/LoKiPhys/LoKi/Particles8.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Particles9.h b/Phys/LoKiPhys/LoKi/Particles9.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/PhysAlgs.h b/Phys/LoKiPhys/LoKi/PhysAlgs.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/PhysAlgsDicts.h b/Phys/LoKiPhys/LoKi/PhysAlgsDicts.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/PhysCnv.h b/Phys/LoKiPhys/LoKi/PhysCnv.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/PhysExtract.h b/Phys/LoKiPhys/LoKi/PhysExtract.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/PhysExtractDicts.h b/Phys/LoKiPhys/LoKi/PhysExtractDicts.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/PhysHelpers.h b/Phys/LoKiPhys/LoKi/PhysHelpers.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/PhysKinematics.h b/Phys/LoKiPhys/LoKi/PhysKinematics.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/PhysMoniDicts.h b/Phys/LoKiPhys/LoKi/PhysMoniDicts.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/PhysRangeTypes.h b/Phys/LoKiPhys/LoKi/PhysRangeTypes.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/PhysSources.h b/Phys/LoKiPhys/LoKi/PhysSources.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/PhysTypes.h b/Phys/LoKiPhys/LoKi/PhysTypes.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/PrintDecay.h b/Phys/LoKiPhys/LoKi/PrintDecay.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Sections.h b/Phys/LoKiPhys/LoKi/Sections.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/SelectVertex.h b/Phys/LoKiPhys/LoKi/SelectVertex.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/VertexCast.h b/Phys/LoKiPhys/LoKi/VertexCast.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/VertexContextCuts.h b/Phys/LoKiPhys/LoKi/VertexContextCuts.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/VertexCuts.h b/Phys/LoKiPhys/LoKi/VertexCuts.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/VertexHolder.h b/Phys/LoKiPhys/LoKi/VertexHolder.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Vertices.h b/Phys/LoKiPhys/LoKi/Vertices.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Vertices0.h b/Phys/LoKiPhys/LoKi/Vertices0.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Vertices1.h b/Phys/LoKiPhys/LoKi/Vertices1.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Vertices2.h b/Phys/LoKiPhys/LoKi/Vertices2.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/LoKi/Vertices5.h b/Phys/LoKiPhys/LoKi/Vertices5.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/dict/LoKiPhys.xml b/Phys/LoKiPhys/dict/LoKiPhys.xml
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/dict/LoKiPhysDict.h b/Phys/LoKiPhys/dict/LoKiPhysDict.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/dict/LoKiPhysFunctors.xml b/Phys/LoKiPhys/dict/LoKiPhysFunctors.xml
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/AuxDesktopBase.cpp b/Phys/LoKiPhys/src/AuxDesktopBase.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Child.cpp b/Phys/LoKiPhys/src/Child.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Decays.cpp b/Phys/LoKiPhys/src/Decays.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/GetPhysDesktop.cpp b/Phys/LoKiPhys/src/GetPhysDesktop.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/ImpParBase.cpp b/Phys/LoKiPhys/src/ImpParBase.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/ImpactParamTool.cpp b/Phys/LoKiPhys/src/ImpactParamTool.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/LoKiPhys.cpp b/Phys/LoKiPhys/src/LoKiPhys.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/PIDOperators.cpp b/Phys/LoKiPhys/src/PIDOperators.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Particles.cpp b/Phys/LoKiPhys/src/Particles.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Particles0.cpp b/Phys/LoKiPhys/src/Particles0.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Particles1.cpp b/Phys/LoKiPhys/src/Particles1.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Particles10.cpp b/Phys/LoKiPhys/src/Particles10.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Particles11.cpp b/Phys/LoKiPhys/src/Particles11.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Particles12.cpp b/Phys/LoKiPhys/src/Particles12.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Particles13.cpp b/Phys/LoKiPhys/src/Particles13.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Particles14.cpp b/Phys/LoKiPhys/src/Particles14.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Particles15.cpp b/Phys/LoKiPhys/src/Particles15.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Particles16.cpp b/Phys/LoKiPhys/src/Particles16.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Particles17.cpp b/Phys/LoKiPhys/src/Particles17.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Particles18.cpp b/Phys/LoKiPhys/src/Particles18.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Particles19.cpp b/Phys/LoKiPhys/src/Particles19.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Particles2.cpp b/Phys/LoKiPhys/src/Particles2.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Particles20.cpp b/Phys/LoKiPhys/src/Particles20.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Particles21.cpp b/Phys/LoKiPhys/src/Particles21.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Particles22.cpp b/Phys/LoKiPhys/src/Particles22.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Particles23.cpp b/Phys/LoKiPhys/src/Particles23.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Particles3.cpp b/Phys/LoKiPhys/src/Particles3.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Particles4.cpp b/Phys/LoKiPhys/src/Particles4.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Particles44.cpp b/Phys/LoKiPhys/src/Particles44.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Particles5.cpp b/Phys/LoKiPhys/src/Particles5.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Particles6.cpp b/Phys/LoKiPhys/src/Particles6.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Particles7.cpp b/Phys/LoKiPhys/src/Particles7.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Particles8.cpp b/Phys/LoKiPhys/src/Particles8.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Particles9.cpp b/Phys/LoKiPhys/src/Particles9.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/PhysAlgsDicts.cpp b/Phys/LoKiPhys/src/PhysAlgsDicts.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/PhysCnv.cpp b/Phys/LoKiPhys/src/PhysCnv.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/PhysExtract.cpp b/Phys/LoKiPhys/src/PhysExtract.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/PhysExtractDicts.cpp b/Phys/LoKiPhys/src/PhysExtractDicts.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/PhysKinematics.cpp b/Phys/LoKiPhys/src/PhysKinematics.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/PhysMoniDicts.cpp b/Phys/LoKiPhys/src/PhysMoniDicts.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/PhysSources.cpp b/Phys/LoKiPhys/src/PhysSources.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/PrintDecay.cpp b/Phys/LoKiPhys/src/PrintDecay.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Sections.cpp b/Phys/LoKiPhys/src/Sections.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/SelectVertex.cpp b/Phys/LoKiPhys/src/SelectVertex.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/VertexHolder.cpp b/Phys/LoKiPhys/src/VertexHolder.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Vertices.cpp b/Phys/LoKiPhys/src/Vertices.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Vertices0.cpp b/Phys/LoKiPhys/src/Vertices0.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Vertices1.cpp b/Phys/LoKiPhys/src/Vertices1.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Vertices2.cpp b/Phys/LoKiPhys/src/Vertices2.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiPhys/src/Vertices5.cpp b/Phys/LoKiPhys/src/Vertices5.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiTracks/LoKi/ITrackFunctorAntiFactory.h b/Phys/LoKiTracks/LoKi/ITrackFunctorAntiFactory.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiTracks/LoKi/ITrackFunctorFactory.h b/Phys/LoKiTracks/LoKi/ITrackFunctorFactory.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiTracks/LoKi/LoKiTracks_dct.h b/Phys/LoKiTracks/LoKi/LoKiTracks_dct.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiTracks/LoKi/TrSources.h b/Phys/LoKiTracks/LoKi/TrSources.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiTracks/LoKi/TrackCuts.h b/Phys/LoKiTracks/LoKi/TrackCuts.h
old mode 100755
new mode 100644
index 09a151001..20251f2ed
--- a/Phys/LoKiTracks/LoKi/TrackCuts.h
+++ b/Phys/LoKiTracks/LoKi/TrackCuts.h
@@ -134,10 +134,10 @@ namespace LoKi
      *
      *  ...
      *  info () 
-     *     << " Monitoring results : "                       << endreq 
-     *     << " NEntries:  #" << counter->entries ()         << endreq 
+     *     << " Monitoring results : "                       << endmsg 
+     *     << " NEntries:  #" << counter->entries ()         << endmsg 
      *     << " Efficiency:(" << counter->eff     ()   
-     *     << "+="            << counter->effErr  () << ")%" << endreq ;
+     *     << "+="            << counter->effErr  () << ")%" << endmsg ;
      *
      *  @endcode
      *
@@ -892,13 +892,13 @@ namespace LoKi
      *
      *  ...
      *  info () 
-     *     << " Monitoring results : "                 << endreq 
-     *     << " NEntries:  #" << counter->entries  ()  << endreq 
-     *     << " TotalSum:   " << counter->flag     ()  << endreq 
+     *     << " Monitoring results : "                 << endmsg 
+     *     << " NEntries:  #" << counter->entries  ()  << endmsg 
+     *     << " TotalSum:   " << counter->flag     ()  << endmsg 
      *     << " Mean+-RMS:  " << counter->flagMean () 
-     *     << "+="            << counter->flagRMS  ()  << endreq      
+     *     << "+="            << counter->flagRMS  ()  << endmsg      
      *     << " Min/Max:    " << counter->flagMin  ()  
-     *     << "/"             << counter->flagMax  ()  << endreq ;
+     *     << "/"             << counter->flagMax  ()  << endmsg ;
      *
      *  @endcode
      *
diff --git a/Phys/LoKiTracks/LoKi/TrackEngine.h b/Phys/LoKiTracks/LoKi/TrackEngine.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiTracks/LoKi/TrackEngineActor.h b/Phys/LoKiTracks/LoKi/TrackEngineActor.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiTracks/LoKi/TrackFactoryLock.h b/Phys/LoKiTracks/LoKi/TrackFactoryLock.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiTracks/LoKi/TrackTypes.h b/Phys/LoKiTracks/LoKi/TrackTypes.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiTracks/LoKi/Tracks.h b/Phys/LoKiTracks/LoKi/Tracks.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiTracks/dict/LoKiTracks.xml b/Phys/LoKiTracks/dict/LoKiTracks.xml
old mode 100755
new mode 100644
diff --git a/Phys/LoKiTracks/dict/LoKiTracksDict.h b/Phys/LoKiTracks/dict/LoKiTracksDict.h
old mode 100755
new mode 100644
diff --git a/Phys/LoKiTracks/src/Components/TrackFunctorFactory.cpp b/Phys/LoKiTracks/src/Components/TrackFunctorFactory.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiTracks/src/Components/TrackSelector.cpp b/Phys/LoKiTracks/src/Components/TrackSelector.cpp
old mode 100755
new mode 100644
index 144fad4a9..318e88558
--- a/Phys/LoKiTracks/src/Components/TrackSelector.cpp
+++ b/Phys/LoKiTracks/src/Components/TrackSelector.cpp
@@ -149,7 +149,7 @@ StatusCode LoKi::Hybrid::TrackSelector::decode () const
   if ( sc.isFailure() ) 
   { return Error ( "Error from LoKi::ITrackFunctorFactory", sc   ) ; } // RETURN 
   // 
-  info() << "CUT: '" << m_cut << "' "<< endreq ;
+  info() << "CUT: '" << m_cut << "' "<< endmsg ;
   //
   m_update_required = false ;
   // (3) release factory, not needed anymore
diff --git a/Phys/LoKiTracks/src/ITrackFunctorAntiFactory.cpp b/Phys/LoKiTracks/src/ITrackFunctorAntiFactory.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiTracks/src/ITrackFunctorFactory.cpp b/Phys/LoKiTracks/src/ITrackFunctorFactory.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiTracks/src/TrSources.cpp b/Phys/LoKiTracks/src/TrSources.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiTracks/src/TrackEngine.cpp b/Phys/LoKiTracks/src/TrackEngine.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiTracks/src/TrackEngineActor.cpp b/Phys/LoKiTracks/src/TrackEngineActor.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiTracks/src/TrackFactoryLock.cpp b/Phys/LoKiTracks/src/TrackFactoryLock.cpp
old mode 100755
new mode 100644
diff --git a/Phys/LoKiTracks/src/Tracks.cpp b/Phys/LoKiTracks/src/Tracks.cpp
old mode 100755
new mode 100644
diff --git a/Phys/ParticleCombiners/src/CombineParticles.cpp b/Phys/ParticleCombiners/src/CombineParticles.cpp
old mode 100755
new mode 100644
diff --git a/Phys/ParticleMaker/src/CombinedParticleMaker.cpp b/Phys/ParticleMaker/src/CombinedParticleMaker.cpp
old mode 100755
new mode 100644
diff --git a/Phys/ParticleMaker/src/CombinedParticleMaker.h b/Phys/ParticleMaker/src/CombinedParticleMaker.h
old mode 100755
new mode 100644
diff --git a/Phys/ParticleMaker/src/MergedPi0Maker.cpp b/Phys/ParticleMaker/src/MergedPi0Maker.cpp
old mode 100755
new mode 100644
diff --git a/Phys/ParticleMaker/src/MergedPi0Maker.h b/Phys/ParticleMaker/src/MergedPi0Maker.h
old mode 100755
new mode 100644
diff --git a/Phys/ParticleMaker/src/NoPIDsParticleMaker.cpp b/Phys/ParticleMaker/src/NoPIDsParticleMaker.cpp
old mode 100755
new mode 100644
diff --git a/Phys/ParticleMaker/src/NoPIDsParticleMaker.h b/Phys/ParticleMaker/src/NoPIDsParticleMaker.h
old mode 100755
new mode 100644
diff --git a/Phys/ParticleMaker/src/Particle2State.cpp b/Phys/ParticleMaker/src/Particle2State.cpp
old mode 100755
new mode 100644
diff --git a/Phys/ParticleMaker/src/Particle2State.h b/Phys/ParticleMaker/src/Particle2State.h
old mode 100755
new mode 100644
diff --git a/Phys/ParticleMaker/src/ParticleStuffer.cpp b/Phys/ParticleMaker/src/ParticleStuffer.cpp
old mode 100755
new mode 100644
diff --git a/Phys/ParticleMaker/src/ParticleStuffer.h b/Phys/ParticleMaker/src/ParticleStuffer.h
old mode 100755
new mode 100644
diff --git a/Phys/ParticleMaker/src/PhotonMaker.cpp b/Phys/ParticleMaker/src/PhotonMaker.cpp
old mode 100755
new mode 100644
diff --git a/Phys/ParticleMaker/src/PhotonMaker.h b/Phys/ParticleMaker/src/PhotonMaker.h
old mode 100755
new mode 100644
diff --git a/Phys/ParticleMaker/src/ResolvedPi0Maker.cpp b/Phys/ParticleMaker/src/ResolvedPi0Maker.cpp
old mode 100755
new mode 100644
diff --git a/Phys/ParticleMaker/src/ResolvedPi0Maker.h b/Phys/ParticleMaker/src/ResolvedPi0Maker.h
old mode 100755
new mode 100644
diff --git a/Phys/PhysDict/dict/PhysDict.h b/Phys/PhysDict/dict/PhysDict.h
old mode 100755
new mode 100644
diff --git a/Phys/PhysDict/dict/PhysDict.xml b/Phys/PhysDict/dict/PhysDict.xml
old mode 100755
new mode 100644
diff --git a/Phys/ProtoParticleFilter/src/ChargedProtoParticleDLLFilter.cpp b/Phys/ProtoParticleFilter/src/ChargedProtoParticleDLLFilter.cpp
old mode 100755
new mode 100644
diff --git a/Phys/ProtoParticleFilter/src/ChargedProtoParticleDLLFilter.h b/Phys/ProtoParticleFilter/src/ChargedProtoParticleDLLFilter.h
old mode 100755
new mode 100644
diff --git a/Phys/ProtoParticleFilter/src/ProtoParticleANNPIDFilter.cpp b/Phys/ProtoParticleFilter/src/ProtoParticleANNPIDFilter.cpp
old mode 100755
new mode 100644
diff --git a/Phys/ProtoParticleFilter/src/ProtoParticleANNPIDFilter.h b/Phys/ProtoParticleFilter/src/ProtoParticleANNPIDFilter.h
old mode 100755
new mode 100644
diff --git a/Phys/ProtoParticleFilter/src/ProtoParticleCALOFilter.cpp b/Phys/ProtoParticleFilter/src/ProtoParticleCALOFilter.cpp
old mode 100755
new mode 100644
diff --git a/Phys/ProtoParticleFilter/src/ProtoParticleCALOFilter.h b/Phys/ProtoParticleFilter/src/ProtoParticleCALOFilter.h
old mode 100755
new mode 100644
diff --git a/Phys/ProtoParticleFilter/src/ProtoParticleDLLFilter.cpp b/Phys/ProtoParticleFilter/src/ProtoParticleDLLFilter.cpp
old mode 100755
new mode 100644
diff --git a/Phys/ProtoParticleFilter/src/ProtoParticleDLLFilter.h b/Phys/ProtoParticleFilter/src/ProtoParticleDLLFilter.h
old mode 100755
new mode 100644
diff --git a/Phys/ProtoParticleFilter/src/ProtoParticleFilterBase.cpp b/Phys/ProtoParticleFilter/src/ProtoParticleFilterBase.cpp
old mode 100755
new mode 100644
diff --git a/Phys/ProtoParticleFilter/src/ProtoParticleFilterBase.h b/Phys/ProtoParticleFilter/src/ProtoParticleFilterBase.h
old mode 100755
new mode 100644
diff --git a/Phys/ProtoParticleFilter/src/ProtoParticleMUONFilter.cpp b/Phys/ProtoParticleFilter/src/ProtoParticleMUONFilter.cpp
old mode 100755
new mode 100644
diff --git a/Phys/ProtoParticleFilter/src/ProtoParticleMUONFilter.h b/Phys/ProtoParticleFilter/src/ProtoParticleMUONFilter.h
old mode 100755
new mode 100644
diff --git a/Phys/ProtoParticleFilter/src/ProtoParticleRICHFilter.cpp b/Phys/ProtoParticleFilter/src/ProtoParticleRICHFilter.cpp
old mode 100755
new mode 100644
diff --git a/Phys/ProtoParticleFilter/src/ProtoParticleRICHFilter.h b/Phys/ProtoParticleFilter/src/ProtoParticleRICHFilter.h
old mode 100755
new mode 100644
diff --git a/Phys/ProtoParticleFilter/src/ProtoParticleSelection.cpp b/Phys/ProtoParticleFilter/src/ProtoParticleSelection.cpp
old mode 100755
new mode 100644
diff --git a/Phys/ProtoParticleFilter/src/ProtoParticleSelection.h b/Phys/ProtoParticleFilter/src/ProtoParticleSelection.h
old mode 100755
new mode 100644
diff --git a/Phys/RelatedInfoTools/src/AddRelatedInfo.cpp b/Phys/RelatedInfoTools/src/AddRelatedInfo.cpp
old mode 100755
new mode 100644
diff --git a/Phys/RelatedInfoTools/src/AddRelatedInfo.h b/Phys/RelatedInfoTools/src/AddRelatedInfo.h
old mode 100755
new mode 100644
diff --git a/Phys/RelatedInfoTools/src/RelInfoVertexIsolationDetached.cpp b/Phys/RelatedInfoTools/src/RelInfoVertexIsolationDetached.cpp
old mode 100755
new mode 100644
diff --git a/Phys/RelatedInfoTools/src/RelInfoVertexIsolationDetached.h b/Phys/RelatedInfoTools/src/RelInfoVertexIsolationDetached.h
old mode 100755
new mode 100644
diff --git a/Phys/TisTosTobbing/TisTos/ParticleTisTos.h b/Phys/TisTosTobbing/TisTos/ParticleTisTos.h
old mode 100755
new mode 100644
diff --git a/Phys/TisTosTobbing/TisTos/TisTos.h b/Phys/TisTosTobbing/TisTos/TisTos.h
old mode 100755
new mode 100644
diff --git a/Phys/TisTosTobbing/src/L0DecReportsMaker.cpp b/Phys/TisTosTobbing/src/L0DecReportsMaker.cpp
old mode 100755
new mode 100644
diff --git a/Phys/TisTosTobbing/src/L0DecReportsMaker.h b/Phys/TisTosTobbing/src/L0DecReportsMaker.h
old mode 100755
new mode 100644
diff --git a/Phys/TisTosTobbing/src/L0SelReportsMaker.cpp b/Phys/TisTosTobbing/src/L0SelReportsMaker.cpp
old mode 100755
new mode 100644
diff --git a/Phys/TisTosTobbing/src/L0SelReportsMaker.h b/Phys/TisTosTobbing/src/L0SelReportsMaker.h
old mode 100755
new mode 100644
diff --git a/Phys/TisTosTobbing/src/TESSelectionTisTos.cpp b/Phys/TisTosTobbing/src/TESSelectionTisTos.cpp
old mode 100755
new mode 100644
diff --git a/Phys/TisTosTobbing/src/TESSelectionTisTos.h b/Phys/TisTosTobbing/src/TESSelectionTisTos.h
old mode 100755
new mode 100644
diff --git a/Phys/TisTosTobbing/src/TESTisTos.h b/Phys/TisTosTobbing/src/TESTisTos.h
old mode 100755
new mode 100644
diff --git a/Phys/TisTosTobbing/src/TriggerSelectionTisTos.cpp b/Phys/TisTosTobbing/src/TriggerSelectionTisTos.cpp
old mode 100755
new mode 100644
diff --git a/Phys/TisTosTobbing/src/TriggerSelectionTisTos.h b/Phys/TisTosTobbing/src/TriggerSelectionTisTos.h
old mode 100755
new mode 100644
diff --git a/Phys/TisTosTobbing/src/TriggerSelectionTisTosSummary.cpp b/Phys/TisTosTobbing/src/TriggerSelectionTisTosSummary.cpp
old mode 100755
new mode 100644
diff --git a/Phys/TisTosTobbing/src/TriggerSelectionTisTosSummary.h b/Phys/TisTosTobbing/src/TriggerSelectionTisTosSummary.h
old mode 100755
new mode 100644
diff --git a/Phys/TisTosTobbing/src/TriggerTisTos.cpp b/Phys/TisTosTobbing/src/TriggerTisTos.cpp
old mode 100755
new mode 100644
diff --git a/Phys/TisTosTobbing/src/TriggerTisTos.h b/Phys/TisTosTobbing/src/TriggerTisTos.h
old mode 100755
new mode 100644
diff --git a/Phys/TisTosTobbing/src/TriggerTisTosSummary.cpp b/Phys/TisTosTobbing/src/TriggerTisTosSummary.cpp
old mode 100755
new mode 100644
diff --git a/Phys/TisTosTobbing/src/TriggerTisTosSummary.h b/Phys/TisTosTobbing/src/TriggerTisTosSummary.h
old mode 100755
new mode 100644
diff --git a/Phys/TisTosTobbing/src/lib/ParticleTisTos.cpp b/Phys/TisTosTobbing/src/lib/ParticleTisTos.cpp
old mode 100755
new mode 100644
diff --git a/Phys/TisTosTobbing/src/lib/TisTos.cpp b/Phys/TisTosTobbing/src/lib/TisTos.cpp
old mode 100755
new mode 100644
diff --git a/Phys/VertexFit/src/AdaptivePVReFitter.cpp b/Phys/VertexFit/src/AdaptivePVReFitter.cpp
old mode 100755
new mode 100644
diff --git a/Phys/VertexFit/src/AdaptivePVReFitter.h b/Phys/VertexFit/src/AdaptivePVReFitter.h
old mode 100755
new mode 100644
diff --git a/Phys/VertexFit/src/DirectionFitter.cpp b/Phys/VertexFit/src/DirectionFitter.cpp
old mode 100755
new mode 100644
diff --git a/Phys/VertexFit/src/DirectionFitter.h b/Phys/VertexFit/src/DirectionFitter.h
old mode 100755
new mode 100644
diff --git a/Phys/VertexFit/src/MomentumCombiner.cpp b/Phys/VertexFit/src/MomentumCombiner.cpp
old mode 100755
new mode 100644
diff --git a/Phys/VertexFit/src/OfflineVertexFitter.cpp b/Phys/VertexFit/src/OfflineVertexFitter.cpp
old mode 100755
new mode 100644
diff --git a/Phys/VertexFit/src/OfflineVertexFitter.h b/Phys/VertexFit/src/OfflineVertexFitter.h
old mode 100755
new mode 100644
diff --git a/Phys/VertexFit/src/PVFitTrack.h b/Phys/VertexFit/src/PVFitTrack.h
old mode 100755
new mode 100644
diff --git a/Phys/VertexFit/src/PVReFitter.cpp b/Phys/VertexFit/src/PVReFitter.cpp
old mode 100755
new mode 100644
diff --git a/Phys/VertexFit/src/PVReFitter.h b/Phys/VertexFit/src/PVReFitter.h
old mode 100755
new mode 100644
diff --git a/Phys/VertexFit/src/PVReFitterAlg.cpp b/Phys/VertexFit/src/PVReFitterAlg.cpp
old mode 100755
new mode 100644
diff --git a/Phys/VertexFit/src/PVReFitterAlg.h b/Phys/VertexFit/src/PVReFitterAlg.h
old mode 100755
new mode 100644
diff --git a/Phys/VertexFit/src/ParticleAdder.cpp b/Phys/VertexFit/src/ParticleAdder.cpp
old mode 100755
new mode 100644
diff --git a/Phys/VertexFit/src/ParticleAdder.h b/Phys/VertexFit/src/ParticleAdder.h
old mode 100755
new mode 100644
diff --git a/Phys/VertexFit/src/PropertimeFitter.cpp b/Phys/VertexFit/src/PropertimeFitter.cpp
old mode 100755
new mode 100644
diff --git a/Phys/VertexFit/src/PropertimeFitter.h b/Phys/VertexFit/src/PropertimeFitter.h
old mode 100755
new mode 100644
diff --git a/Phys/VertexFit/src/TrgVertexFitter.cpp b/Phys/VertexFit/src/TrgVertexFitter.cpp
old mode 100755
new mode 100644
diff --git a/Phys/VertexFit/src/TrgVertexFitter.h b/Phys/VertexFit/src/TrgVertexFitter.h
old mode 100755
new mode 100644
diff --git a/PhysSys/doc/MainPage.h b/PhysSys/doc/MainPage.h
old mode 100755
new mode 100644
-- 
GitLab


From bad5a60fe5cf83d608b35281c933f2cfbd8b28ea Mon Sep 17 00:00:00 2001
From: Chris Jones <jonesc@hep.phy.cam.ac.uk>
Date: Fri, 22 Jul 2016 16:33:20 +0100
Subject: [PATCH 08/10] Fixes for gcc 6.1

---
 Kernel/SelectionLine/doc/release.notes         | 3 +++
 Kernel/SelectionLine/src/SelectionLine.cpp     | 1 +
 Phys/LoKiProtoParticles/doc/release.notes      | 3 +++
 Phys/LoKiProtoParticles/src/ProtoParticles.cpp | 1 +
 4 files changed, 8 insertions(+)

diff --git a/Kernel/SelectionLine/doc/release.notes b/Kernel/SelectionLine/doc/release.notes
index f904d2675..3826905e8 100644
--- a/Kernel/SelectionLine/doc/release.notes
+++ b/Kernel/SelectionLine/doc/release.notes
@@ -5,6 +5,9 @@
 ! Purpose     : Infrastructure for HLT and stripping 'lines'
 ! -----------------------------------------------------------------------------
 
+! 2016-07-22 - Chris Jones
+ - Add some missing includes (for gcc 6.1).
+
 !========================= SelectionLine v1r8 2016-03-28 =========================
 
 ! 2015-03-28 - Rosen Matev
diff --git a/Kernel/SelectionLine/src/SelectionLine.cpp b/Kernel/SelectionLine/src/SelectionLine.cpp
index 5f8479e3c..72a0abd23 100644
--- a/Kernel/SelectionLine/src/SelectionLine.cpp
+++ b/Kernel/SelectionLine/src/SelectionLine.cpp
@@ -10,6 +10,7 @@
 #include <type_traits>
 #include <utility>
 #include <chrono>
+#include <numeric>
 // ============================================================================
 // Boost
 // ============================================================================
diff --git a/Phys/LoKiProtoParticles/doc/release.notes b/Phys/LoKiProtoParticles/doc/release.notes
index 061dbbf6d..de68132a4 100644
--- a/Phys/LoKiProtoParticles/doc/release.notes
+++ b/Phys/LoKiProtoParticles/doc/release.notes
@@ -6,6 +6,9 @@
 ! Purpose     : New package to deal with ProtoParticles 
 ! -----------------------------------------------------------------------------
 
+! 2016-07-22 - Chris Jones
+ - Add some missing includes (for gcc 6.1).
+
 !====================== LoKiProtoParticles v3r3 2016-05-19 ====================
 
 ! 2016-04-27 - Vanya Belyaev
diff --git a/Phys/LoKiProtoParticles/src/ProtoParticles.cpp b/Phys/LoKiProtoParticles/src/ProtoParticles.cpp
index 993b332cb..5e0ac78c1 100644
--- a/Phys/LoKiProtoParticles/src/ProtoParticles.cpp
+++ b/Phys/LoKiProtoParticles/src/ProtoParticles.cpp
@@ -6,6 +6,7 @@
 // ============================================================================
 #include <sstream>
 #include <functional>
+#include <numeric>
 // ============================================================================
 // GaudiKernel
 // ============================================================================
-- 
GitLab


From e6f4183072684ba77e9e473a88d6280918b0c3cc Mon Sep 17 00:00:00 2001
From: Eduardo Rodrigues <eduardo.rodrigues@cern.ch>
Date: Tue, 26 Jul 2016 12:05:50 +0200
Subject: [PATCH 09/10] v22r1

---
 CMakeLists.txt            | 2 +-
 PhysSys/CMakeLists.txt    | 2 +-
 PhysSys/cmt/requirements  | 2 +-
 PhysSys/doc/release.notes | 5 +++++
 4 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index f5a72a53b..282262594 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -6,5 +6,5 @@ find_package(GaudiProject)
 #---------------------------------------------------------------
 
 # Declare project name and version
-gaudi_project(Phys v22r0
+gaudi_project(Phys v22r1
               USE Rec v20r0)
diff --git a/PhysSys/CMakeLists.txt b/PhysSys/CMakeLists.txt
index add080d44..6b9d83cb5 100644
--- a/PhysSys/CMakeLists.txt
+++ b/PhysSys/CMakeLists.txt
@@ -1,7 +1,7 @@
 ################################################################################
 # Package: PhysSys
 ################################################################################
-gaudi_subdir(PhysSys v22r0)
+gaudi_subdir(PhysSys v22r1)
 
 gaudi_depends_on_subdirs(Kernel/SelectionLine
                          Phys/BBDecTreeTool
diff --git a/PhysSys/cmt/requirements b/PhysSys/cmt/requirements
index 2e077bdd3..50754702f 100755
--- a/PhysSys/cmt/requirements
+++ b/PhysSys/cmt/requirements
@@ -1,5 +1,5 @@
 package PhysSys
-version v22r0
+version v22r1
 
 branches doc cmt
 
diff --git a/PhysSys/doc/release.notes b/PhysSys/doc/release.notes
index 93f3a1bd3..917dfc761 100755
--- a/PhysSys/doc/release.notes
+++ b/PhysSys/doc/release.notes
@@ -3,6 +3,11 @@ Package             : PhysSys
 Package Coordinator : DaVinci coordinator
 Purpose             : LHCb physics packages
 
+</PRE><H1><A NAME=v22r1>2016-07-26 Phys v22r1</A></H1><PRE>
+
+Development release prepared from the master branch.
+It is based on Gaudi v27r1, LHCb v41r0 and Rec v20r0 and uses LCG_84 with ROOT 6.06.02.
+
 </PRE><H1><A NAME=v22r0>2016-07-08 Phys v22r0</A></H1><PRE>
 
 Development release for upgrade tracking studies. Released on the master.
-- 
GitLab


From 710f1f68dcdff999b323ec659fa804dc98f1bfb8 Mon Sep 17 00:00:00 2001
From: Eduardo Rodrigues <eduardo.rodrigues@cern.ch>
Date: Thu, 4 Aug 2016 12:32:31 +0200
Subject: [PATCH 10/10] Fix to utesttmva.cxx

---
 Phys/MVADictTools/src/applications/utesttmva.cxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Phys/MVADictTools/src/applications/utesttmva.cxx b/Phys/MVADictTools/src/applications/utesttmva.cxx
index 522ad0817..3d3c6a2fe 100644
--- a/Phys/MVADictTools/src/applications/utesttmva.cxx
+++ b/Phys/MVADictTools/src/applications/utesttmva.cxx
@@ -15,7 +15,7 @@ bool inittest()
   TMVATransform::optmap options;
   options["Name"]="test";
   
-  options["XMLFile"] = "options/TestPhi2KK.xml";
+  options["XMLFile"] = "$MVADICTTOOLSROOT/options/TestPhi2KK.xml";
   return tmva.Init(options,std::cout);
 }
  
-- 
GitLab