Program Listing for File EMInverseComptonScattering.h
↰ Return to documentation for file (include/crpropa/module/EMInverseComptonScattering.h)
#ifndef CRPROPA_EMINVERSECOMPTONSCATTERING_H
#define CRPROPA_EMINVERSECOMPTONSCATTERING_H
#include <string>
#include "crpropa/Module.h"
#include "crpropa/PhotonBackground.h"
#include "crpropa/InteractionRates.h"
#include "crpropa/Geometry.h"
namespace crpropa {
class EMInverseComptonScattering: public Module {
private:
ref_ptr<PhotonField> photonField;
bool havePhotons;
double limit;
double thinning;
ref_ptr<Surface> surface;
std::string interactionTag = "EMIC";
ref_ptr<InteractionRates> interactionRates;
public:
EMInverseComptonScattering(ref_ptr<PhotonField> photonField, bool havePhotons = false, double thinning = 0, double limit = 0.1, ref_ptr<Surface> surface = nullptr);
// set the target photon field
void setPhotonField(ref_ptr<PhotonField> photonField);
// decide if secondary photons are added to the simulation
void setHavePhotons(bool havePhotons);
void setLimit(double limit);
void setThinning(double thinning);
void setSurface(ref_ptr<Surface> surface);
ref_ptr<Surface> getSurface() const;
void setInteractionTag(std::string tag);
std::string getInteractionTag() const;
void setInteractionRates(ref_ptr<InteractionRates> intRates);
ref_ptr<InteractionRates> getInteractionRates() const;
void initRate(std::string path);
void initCumulativeRate(std::string path);
double getRate(double E, const Vector3d &position = Vector3d(0.), double z = 0) const;
void process(Candidate *candidate) const;
void performInteraction(Candidate *candidate) const;
};
} // namespace crpropa
#endif // CRPROPA_EMINVERSECOMPTONSCATTERING_H