1
0
Fork 0
This repository has been archived on 2021-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
uni-m.cds-adv-prog/ex4.2/main.cpp

14 lines
160 B
C++

#include "CaloCell.hh"
#include "CaloGrid.hh"
#include "Point.hh"
int main() {
CaloCell cell(0, 1) ;
Point p ;
CaloGrid grid(2, 2) ;
grid.cell(1, 1);
}