/** * Author: * * * allpix Authors: * John Idarraga * Mathieu Benoit */ #include "AllPixMedipix2Digit.hh" G4Allocator AllPixMedipix2DigitAllocator; //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... AllPixMedipix2Digit::AllPixMedipix2Digit() { pixelIDX = -1; pixelIDY = -1; pixelCounts = 0; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... AllPixMedipix2Digit::~AllPixMedipix2Digit() {;} //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... AllPixMedipix2Digit::AllPixMedipix2Digit(const AllPixMedipix2Digit& right) : AllPixDigitInterface() { pixelIDX = right.pixelIDX; pixelIDY = right.pixelIDY; pixelCounts = right.pixelCounts; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... const AllPixMedipix2Digit& AllPixMedipix2Digit::operator=(const AllPixMedipix2Digit& right) { pixelIDX = right.pixelIDX; pixelIDY = right.pixelIDY; pixelCounts = right.pixelCounts; return *this; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... int AllPixMedipix2Digit::operator==(const AllPixMedipix2Digit& right) const { return ((pixelIDX==right.pixelIDX)&& (pixelIDY==right.pixelIDY)&& (pixelCounts==right.pixelCounts)); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void AllPixMedipix2Digit::Draw() {;} //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void AllPixMedipix2Digit::Print() {;} //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....