Exemple #1
0
 def _lng_(self):
     """
     Better log of g than log(g) (truncation mass)
     """
     return core.dndm(self.mmin, self.logHs, self._alpha_s, self.beta, self.mmin,norm=1, log=True)
Exemple #2
0
 def _g_(self):
     """
     The shape of the MRP, completely unnormalised (ie. A=1) (truncation mass)
     """
     return core.dndm(self.mmin, self.logHs, self._alpha_s, self.beta, self.mmin,norm=1)
Exemple #3
0
 def _lng(self):
     """
     Better log of g than log(g) (all masses)
     """
     return core.dndm(self.m, self.logHs, self._alpha_s, self.beta, norm=1, log=True)
Exemple #4
0
 def _g(self):
     """
     The shape of the MRP, completely unnormalised (ie. A=1) (all masses)
     """
     return core.dndm(self.m, self.logHs, self._alpha_s, self.beta, self.mmin, norm=1)