#ifndef MyCherenkov_hh
#define MyCherenkov_hh 1
///////////////////////////////////////////////////////////////////////////////
// File:  MyCherenkov.hh
// Description: Find number of Cherenkov photons in a medium
///////////////////////////////////////////////////////////////////////////////

#include "G4Step.hh"
#include "G4ParticleDefinition.hh"

namespace MyCherenkov {
  int computeNPE(const G4Step* step, const double& ref_index, const bool& verbose);
  int computeNbOfPhotons(const double& pBeta, const double& step_length, const double& ref_index, const bool& verbose);
  bool isApplicable(const G4ParticleDefinition* aParticleType, const bool& verbose);
};

#endif
