Construct a `DftFlux`.
(self, func, args)
| 688 | """ """ |
| 689 | |
| 690 | def __init__(self, func, args): |
| 691 | """Construct a `DftFlux`.""" |
| 692 | super().__init__(func, args) |
| 693 | self.nfreqs = len(args[0]) |
| 694 | self.regions = args[1] |
| 695 | self.num_components = 4 |
| 696 | |
| 697 | @property |
| 698 | def flux(self): |