Re: Class not found [message #1799 is a reply to message #1773] |
Mon, 13 July 2009 11:49  |
bweinert Messages: 16 Registered: September 2008 Location: University of Rochester |
|
|
|
I'm having a problem adding a few methods to Calorimeter hit. I tried adding a few old methods to it but it won't recognize them. These are the errors I get. I'll attach CalorimeterHit. I tried rebuilding lcsim in netbeans. It doesn't seem to recognize the new methods, it just calls the old CalorimeterHit. Is there something I did wrong, or that I can do?
C:\Documents and Settings\sven\LC_software\lcsim\src\org\lcsim\recon\muon\Bar relCalSegmentFinder3.java:276: cannot find symbol
symbol : method getHits()
location: interface java.util.List<org.lcsim.event.CalorimeterHit>
CalorimeterHit jhit = hits.getHits();
^
C:\Documents and Settings\sven\LC_software\lcsim\src\org\lcsim\recon\muon\Bar relCalSegmentFinder3.java:386: cannot find symbol
symbol : method getHits()
location: interface java.util.List<org.lcsim.event.CalorimeterHit>
CalorimeterHit jhit = hits.getHits();
^
C:\Documents and Settings\sven\LC_software\lcsim\src\org\lcsim\recon\muon\Bar relCalSegmentFinder3.java:749: cannot find symbol
symbol : method getHits()
location: interface org.lcsim.event.CalorimeterHit
for (Enumeration eCal = calHits.getHits();
^
C:\Documents and Settings\sven\LC_software\lcsim\src\org\lcsim\recon\muon\Bar relCalSegmentFinder3.java:758: cannot find symbol
symbol : method getTowerID()
location: interface org.lcsim.event.CalorimeterHit
cell.setTowerID(hit.getTowerID());
^
C:\Documents and Settings\sven\LC_software\lcsim\src\org\lcsim\recon\muon\Bar relCalSegmentFinder3.java:759: cannot find symbol
symbol : method getPhiBin()
location: interface org.lcsim.event.CalorimeterHit
int cellPhi = cell.getPhiBin();
^
C:\Documents and Settings\sven\LC_software\lcsim\src\org\lcsim\recon\muon\Bar relCalSegmentFinder3.java:760: cannot find symbol
symbol : method getThetaBin()
location: interface org.lcsim.event.CalorimeterHit
int cellTheta = cell.getThetaBin();
^
C:\Documents and Settings\sven\LC_software\lcsim\src\org\lcsim\recon\muon\Bar relCalSegmentFinder3.java:761: cannot find symbol
symbol : method getLayers()
location: interface org.lcsim.event.CalorimeterHit
int cellLayer = cell.getLayers();
|
|
|